Changeset ef73cf30 in rtems


Ignore:
Timestamp:
05/27/05 15:22:13 (19 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
b9ad5414
Parents:
fd65489
Message:

Partial update from FreeBSD.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libnetworking/net/if.h

    rfd65489 ref73cf30  
    207207                struct  sockaddr ifru_dstaddr;
    208208                struct  sockaddr ifru_broadaddr;
    209                 short   ifru_flags;
     209                short   ifru_flags[2];
    210210                int     ifru_metric;
    211211                int     ifru_mtu;
     
    218218#define ifr_dstaddr     ifr_ifru.ifru_dstaddr   /* other end of p-to-p link */
    219219#define ifr_broadaddr   ifr_ifru.ifru_broadaddr /* broadcast address */
    220 #define ifr_flags       ifr_ifru.ifru_flags     /* flags */
     220#define ifr_flags       ifr_ifru.ifru_flags[0]  /* flags (low 16 bits) */
     221#define ifr_flagshigh   ifr_ifru.ifru_flags[1]  /* flags (high 16 bits) */
    221222#define ifr_metric      ifr_ifru.ifru_metric    /* metric */
    222223#define ifr_mtu         ifr_ifru.ifru_mtu       /* mtu */
Note: See TracChangeset for help on using the changeset viewer.