1 /*
2 * Bond several ethernet interfaces into a Cisco, running 'Etherchannel'.
3 *
4 *
5 * Portions are (c) Copyright 1995 Simon "Guru Aleph-Null" Janes
6 * NCM: Network and Communications Management, Inc.
7 *
8 * BUT, I'm the one who modified it for ethernet, so:
9 * (c) Copyright 1999, Thomas Davis, tadavis@lbl.gov
10 *
11 * This software may be used and distributed according to the terms
12 * of the GNU Public License, incorporated herein by reference.
13 *
14 */
15
16 #ifndef _LINUX_IF_BONDING_H
17 #define _LINUX_IF_BONDING_H
18
19 #define BOND_ENSLAVE (SIOCDEVPRIVATE)
20 #define BOND_RELEASE (SIOCDEVPRIVATE + 1)
21 #define BOND_SETHWADDR (SIOCDEVPRIVATE + 2)
22
23 #endif /* _LINUX_BOND_H */
24
25 /*
26 * Local variables:
27 * version-control: t
28 * kept-new-versions: 5
29 * c-indent-level: 8
30 * c-basic-offset: 8
31 * tab-width: 8
32 * End:
33 */
34
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.