Rev 4243 | Rev 4725 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4243 | Rev 4350 | ||
|---|---|---|---|
| Line 75... | Line 75... | ||
| 75 | /** Device present but unable to transmit. |
75 | /** Device present but unable to transmit. |
| 76 | */ |
76 | */ |
| 77 | NETIF_CARRIER_LOST |
77 | NETIF_CARRIER_LOST |
| 78 | }; |
78 | }; |
| 79 | 79 | ||
| 80 | /** \todo |
- | |
| 81 | */ |
- | |
| 82 | #define NIFF_UP ( 1 << 0 ) |
- | |
| 83 | #define NIFF_NOARP ( 1 << 1 ) |
- | |
| 84 | #define NIFF_LOOPBACK ( 1 << 2 ) |
- | |
| 85 | #define NIFF_BROADCAST ( 1 << 3 ) |
- | |
| 86 | #define NIFF_PROMISC ( 1 << 4 ) |
- | |
| 87 | #define NIFF_MULTICAST ( 1 << 5 ) |
- | |
| 88 | - | ||
| 89 | /** Device usage statistics. |
80 | /** Device usage statistics. |
| 90 | * Based on linux_kernel/include/linux/netdevice.h. |
81 | * Based on linux_kernel/include/linux/netdevice.h. |
| 91 | */ |
82 | */ |
| 92 | struct device_stats{ |
83 | struct device_stats{ |
| 93 | /** Total packets received. |
84 | /** Total packets received. |