Changeset a33f0a6 in mainline for uspace/srv/net/il/ip/ip.h
- Timestamp:
- 2011-08-03T17:34:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1940326
- Parents:
- 52a79081 (diff), 3fab770 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/ip.h
r52a79081 ra33f0a6 38 38 #define NET_IP_H_ 39 39 40 #include <async.h> 40 41 #include <fibril_synch.h> 41 42 #include <ipc/services.h> … … 98 99 /** Packet dimension. */ 99 100 packet_dimension_t packet_dimension; 100 /** Netif module phone. */101 int phone;101 /** Netif module session. */ 102 async_sess_t *sess; 102 103 /** Routing table. */ 103 104 ip_routes_t routes; … … 112 113 /** IP protocol specific data. */ 113 114 struct ip_proto { 114 /** Protocol module phone. */115 int phone;115 /** Protocol module session. */ 116 async_sess_t *sess; 116 117 /** Protocol number. */ 117 118 int protocol; … … 142 143 /** Known support modules. */ 143 144 modules_t modules; 144 /** Networking module phone. */145 int net_phone;145 /** Networking module session. */ 146 async_sess_t *net_sess; 146 147 /** Registered network interfaces. */ 147 148 ip_netifs_t netifs;
Note:
See TracChangeset
for help on using the changeset viewer.