Changes in uspace/srv/net/il/ip/ip.h [609243f4:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/ip.h
r609243f4 rffa2c8ef 38 38 #define NET_IP_H_ 39 39 40 #include <async.h>41 40 #include <fibril_synch.h> 42 41 #include <ipc/services.h> … … 92 91 in_addr_t broadcast; 93 92 /** Device identifier. */ 94 nic_device_id_t device_id;93 device_id_t device_id; 95 94 /** Indicates whether using DHCP. */ 96 95 int dhcp; … … 99 98 /** Packet dimension. */ 100 99 packet_dimension_t packet_dimension; 101 /** Netif module session. */102 async_sess_t *sess;100 /** Netif module phone. */ 101 int phone; 103 102 /** Routing table. */ 104 103 ip_routes_t routes; … … 108 107 services_t service; 109 108 /** Device state. */ 110 nic_device_state_t state;109 device_state_t state; 111 110 }; 112 111 113 112 /** IP protocol specific data. */ 114 113 struct ip_proto { 115 /** Protocol module session. */116 async_sess_t *sess;114 /** Protocol module phone. */ 115 int phone; 117 116 /** Protocol number. */ 118 117 int protocol; … … 143 142 /** Known support modules. */ 144 143 modules_t modules; 145 /** Networking module session. */146 async_sess_t *net_sess;144 /** Networking module phone. */ 145 int net_phone; 147 146 /** Registered network interfaces. */ 148 147 ip_netifs_t netifs;
Note:
See TracChangeset
for help on using the changeset viewer.