GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / sysroot / usr / include / linux / if_eql.h
blobc0b94ec7a4c146233a5f27aba11c3ba0460e922d
1 /*
2 * Equalizer Load-balancer for serial network interfaces.
4 * (c) Copyright 1995 Simon "Guru Aleph-Null" Janes
5 * NCM: Network and Communications Management, Inc.
8 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference.
11 * The author may be reached as simon@ncm.com, or C/O
12 * NCM
13 * Attn: Simon Janes
14 * 6803 Whittier Ave
15 * McLean VA 22101
16 * Phone: 1-703-847-0040 ext 103
19 #ifndef _LINUX_IF_EQL_H
20 #define _LINUX_IF_EQL_H
22 #define EQL_DEFAULT_SLAVE_PRIORITY 28800
23 #define EQL_DEFAULT_MAX_SLAVES 4
24 #define EQL_DEFAULT_MTU 576
25 #define EQL_DEFAULT_RESCHED_IVAL 100
27 #define EQL_ENSLAVE (SIOCDEVPRIVATE)
28 #define EQL_EMANCIPATE (SIOCDEVPRIVATE + 1)
30 #define EQL_GETSLAVECFG (SIOCDEVPRIVATE + 2)
31 #define EQL_SETSLAVECFG (SIOCDEVPRIVATE + 3)
33 #define EQL_GETMASTRCFG (SIOCDEVPRIVATE + 4)
34 #define EQL_SETMASTRCFG (SIOCDEVPRIVATE + 5)
37 typedef struct master_config {
38 char master_name[16];
39 int max_slaves;
40 int min_slaves;
41 } master_config_t;
43 typedef struct slave_config {
44 char slave_name[16];
45 long priority;
46 } slave_config_t;
48 typedef struct slaving_request {
49 char slave_name[16];
50 long priority;
51 } slaving_request_t;
54 #endif /* _LINUX_EQL_H */