Changes in uspace/srv/net/il/ip/ip.h [e8199d77:88a1bb9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/ip.h
re8199d77 r88a1bb9 59 59 typedef struct ip_netif ip_netif_t; 60 60 61 /** Type definition of the IP network interface specific data pointer.62 * @see ip_netif63 */64 typedef ip_netif_t *ip_netif_ref;65 66 61 /** Type definition of the IP protocol specific data. 67 62 * @see ip_proto … … 69 64 typedef struct ip_proto ip_proto_t; 70 65 71 /** Type definition of the IP protocol specific data pointer.72 * @see ip_proto73 */74 typedef ip_proto_t *ip_proto_ref;75 76 66 /** Type definition of the IP route specific data. 77 67 * @see ip_route 78 68 */ 79 69 typedef struct ip_route ip_route_t; 80 81 /** Type definition of the IP route specific data pointer.82 * @see ip_route83 */84 typedef ip_route_t *ip_route_ref;85 70 86 71 /** IP network interfaces. … … 104 89 struct ip_netif { 105 90 /** ARP module. Assigned if using ARP. */ 106 module_ refarp;91 module_t *arp; 107 92 /** Broadcast address. */ 108 93 in_addr_t broadcast; … … 146 131 in_addr_t gateway; 147 132 /** Parent netif. */ 148 ip_netif_ refnetif;133 ip_netif_t *netif; 149 134 /** Target network mask. */ 150 135 in_addr_t netmask;
Note:
See TracChangeset
for help on using the changeset viewer.