Changeset 4e5c7ba in mainline for uspace/srv/net/il/ip/ip.h
- Timestamp:
- 2010-11-18T22:36:12Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f772bc55
- Parents:
- cb569e6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/ip.h
rcb569e6 r4e5c7ba 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. … … 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.