Changes in uspace/lib/net/generic/net_remote.c [1bfd3d3:14f1db0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/generic/net_remote.c
r1bfd3d3 r14f1db0 27 27 */ 28 28 29 /** @addtogroup libnet30 * @{29 /** @addtogroup net 30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * Networking interface implementation for remote modules.35 * @see net_interface.h34 * Networking interface implementation for remote modules. 35 * @see net_interface.h 36 36 */ 37 37 38 38 #include <ipc/services.h> 39 #include <ipc/net_net.h>40 39 41 40 #include <malloc.h> 42 41 43 #include < generic.h>44 #include <net /modules.h>45 #include <net /device.h>42 #include <net_messages.h> 43 #include <net_modules.h> 44 #include <net_device.h> 46 45 #include <net_interface.h> 47 46 #include <adt/measured_strings.h> 47 #include <net_net_messages.h> 48 48 49 /** Connects to the networking module. 50 * 51 * @return The networking module phone on success. 52 */ 53 int net_connect_module(void) 54 { 49 int net_connect_module(services_t service){ 55 50 return connect_to_service(SERVICE_NETWORKING); 56 51 } 57 52 58 /** Frees the received settings. 59 * 60 * @param[in] settings The received settings. 61 * @param[in] data The received settings data. 62 * @see net_get_device_conf_req() 63 * @see net_get_conf_req() 64 */ 65 void net_free_settings(measured_string_t *settings, char *data) 66 { 67 if (settings) 53 void net_free_settings(measured_string_ref settings, char * data){ 54 if(settings){ 68 55 free(settings); 69 if (data) 56 } 57 if(data){ 70 58 free(data); 59 } 71 60 } 72 61 73 /** Returns the global configuration. 74 * 75 * The configuration names are read and the appropriate settings are set 76 * instead. Call net_free_settings() function to release the returned 77 * configuration. 78 * 79 * @param[in] net_phone The networking module phone. 80 * @param[in,out] configuration The requested configuration. The names are read 81 * and the appropriate settings are set instead. 82 * 83 * @param[in] count The configuration entries count. 84 * @param[in,out] data The configuration and settings data. 85 * @return EOK on success. 86 * @return EINVAL if the configuration is NULL. 87 * @return EINVAL if the count is zero. 88 * @return Other error codes as defined for the 89 * generic_translate_req() function. 90 */ 91 int 92 net_get_conf_req(int net_phone, measured_string_t **configuration, 93 size_t count, char **data) 94 { 95 return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, 0, 0, 96 *configuration, count, configuration, data); 62 int net_get_conf_req(int net_phone, measured_string_ref * configuration, size_t count, char ** data){ 63 return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, 0, 0, * configuration, count, configuration, data); 97 64 } 98 65 99 /** Returns the device specific configuration. 100 * 101 * Returns the global configuration if the device specific is not found. 102 * The configuration names are read and the appropriate settings are set 103 * instead. Call net_free_settings() function to release the returned 104 * configuration. 105 * 106 * @param[in] net_phone The networking module phone. 107 * @param[in] device_id The device identifier. 108 * @param[in,out] configuration The requested device configuration. The names 109 * are read and the appropriate settings are set instead. 110 * @param[in] count The configuration entries count. 111 * @param[in,out] data The configuration and settings data. 112 * @return EOK on success. 113 * @return EINVAL if the configuration is NULL. 114 * @return EINVAL if the count is zero. 115 * @return Other error codes as defined for the 116 * generic_translate_req() function. 117 */ 118 int 119 net_get_device_conf_req(int net_phone, device_id_t device_id, 120 measured_string_t **configuration, size_t count, char **data) 121 { 122 return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, 123 device_id, 0, *configuration, count, configuration, data); 66 int net_get_device_conf_req(int net_phone, device_id_t device_id, measured_string_ref * configuration, size_t count, char ** data){ 67 return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, device_id, 0, * configuration, count, configuration, data); 124 68 } 125 69
Note:
See TracChangeset
for help on using the changeset viewer.