mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Define IFF_ALTPHYS to be IFF_LINK2. Gross, but effective. (There aren't any
more bits left in if_flags and I don't want to make it a long this late in the release cycle.)
This commit is contained in:
parent
e98bbd43df
commit
37be1da83f
1 changed files with 2 additions and 1 deletions
|
|
@ -31,7 +31,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)if.h 8.1 (Berkeley) 6/10/93
|
||||
* $Id: if.h,v 1.5 1994/08/18 22:35:20 wollman Exp $
|
||||
* $Id: if.h,v 1.6 1994/08/21 05:11:40 paul Exp $
|
||||
*/
|
||||
|
||||
#ifndef _NET_IF_H_
|
||||
|
|
@ -175,6 +175,7 @@ struct ifnet {
|
|||
#define IFF_LINK0 0x1000 /* per link layer defined bit */
|
||||
#define IFF_LINK1 0x2000 /* per link layer defined bit */
|
||||
#define IFF_LINK2 0x4000 /* per link layer defined bit */
|
||||
#define IFF_ALTPHYS IFF_LINK2 /* use alternate physical connection */
|
||||
#define IFF_MULTICAST 0x8000 /* supports multicast */
|
||||
|
||||
/* flags set internally only: */
|
||||
|
|
|
|||
Loading…
Reference in a new issue