Changeset b934e43 in mainline
- Timestamp:
- 2010-10-15T21:07:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b69ceea
- Parents:
- 8d601db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/generic/net_remote.c
r8d601db rb934e43 27 27 */ 28 28 29 /** @addtogroup net30 * 29 /** @addtogroup libnet 30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * 35 * 34 * Networking interface implementation for remote modules. 35 * @see net_interface.h 36 36 */ 37 37 … … 52 52 } 53 53 54 void net_free_settings(measured_string_ref settings, char * 54 void net_free_settings(measured_string_ref settings, char *data) 55 55 { 56 56 if (settings) … … 62 62 63 63 int 64 net_get_conf_req(int net_phone, measured_string_ref * 65 size_t count, char ** 64 net_get_conf_req(int net_phone, measured_string_ref *configuration, 65 size_t count, char **data) 66 66 { 67 67 return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, 0, 0, … … 71 71 int 72 72 net_get_device_conf_req(int net_phone, device_id_t device_id, 73 measured_string_ref * configuration, size_t count, char **data)73 measured_string_ref *configuration, size_t count, char **data) 74 74 { 75 75 return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF,
Note:
See TracChangeset
for help on using the changeset viewer.