Changeset 59ecd4a in mainline for uspace/lib/net/include/net_interface.h
- Timestamp:
- 2010-04-04T21:41:47Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5db9084
- Parents:
- 36a75a2 (diff), ee7e82a9 (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/net_interface.h
r36a75a2 r59ecd4a 43 43 #include <ipc/services.h> 44 44 45 #include "../include/device.h" 46 47 #include "../structures/measured_strings.h" 45 #include <net_device.h> 46 #include <adt/measured_strings.h> 48 47 49 48 /** @name Networking module interface … … 66 65 * @returns Other error codes as defined for the generic_translate_req() function. 67 66 */ 68 int net_get_device_conf_req(int net_phone, device_id_t device_id, measured_string_ref * configuration, size_t count, char ** data);67 extern int net_get_device_conf_req(int net_phone, device_id_t device_id, measured_string_ref * configuration, size_t count, char ** data); 69 68 70 69 /** Returns the global configuration. … … 80 79 * @returns Other error codes as defined for the generic_translate_req() function. 81 80 */ 82 int net_get_conf_req(int net_phone, measured_string_ref * configuration, size_t count, char ** data);81 extern int net_get_conf_req(int net_phone, measured_string_ref * configuration, size_t count, char ** data); 83 82 84 83 /** Frees the received settings. … … 88 87 * @see net_get_conf_req() 89 88 */ 90 void net_free_settings(measured_string_ref settings, char * data);89 extern void net_free_settings(measured_string_ref settings, char * data); 91 90 92 91 /** Connects to the networking module. … … 95 94 * @returns 0 if called by the bundle module. 96 95 */ 97 int net_connect_module(services_t service);96 extern int net_connect_module(services_t service); 98 97 99 98 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.