Changeset 61bfc370 in mainline for uspace/srv/net/net/net.h
- Timestamp:
- 2011-01-07T18:57:55Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e08a733
- Parents:
- 7c34b28f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/net/net.h
r7c34b28f r61bfc370 105 105 module_t *driver; 106 106 107 device_id_t id; 108 module_t *il; 109 char *name;/**< System-unique network interface name. */110 module_t *nil; 107 device_id_t id; /**< System-unique network interface identifier. */ 108 module_t *il; /**< Serving internet layer module index. */ 109 uint8_t *name; /**< System-unique network interface name. */ 110 module_t *nil; /**< Serving link layer module index. */ 111 111 } netif_t; 112 112 … … 133 133 } net_globals_t; 134 134 135 extern int add_configuration(measured_strings_t *, const char *, const char *); 135 extern int add_configuration(measured_strings_t *, const uint8_t *, 136 const uint8_t *); 136 137 extern int net_module_message(ipc_callid_t, ipc_call_t *, ipc_call_t *, int *); 137 138 extern int net_initialize_build(async_client_conn_t);
Note:
See TracChangeset
for help on using the changeset viewer.