Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/generic/net_remote.c

    r2fa0ad9 r14f1db0  
    4747#include <net_net_messages.h>
    4848
    49 int net_connect_module(services_t service)
    50 {
     49int net_connect_module(services_t service){
    5150        return connect_to_service(SERVICE_NETWORKING);
    5251}
    5352
    54 void net_free_settings(measured_string_ref settings, char * data)
    55 {
    56         if (settings)
     53void net_free_settings(measured_string_ref settings, char * data){
     54        if(settings){
    5755                free(settings);
    58 
    59         if (data)
     56        }
     57        if(data){
    6058                free(data);
     59        }
    6160}
    6261
    63 int
    64 net_get_conf_req(int net_phone, measured_string_ref * configuration,
    65     size_t count, char ** data)
    66 {
    67         return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, 0, 0,
    68             *configuration, count, configuration, data);
     62int 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);
    6964}
    7065
    71 int
    72 net_get_device_conf_req(int net_phone, device_id_t device_id,
    73     measured_string_ref * configuration, size_t count, char ** data)
    74 {
    75         return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF,
    76             device_id, 0, *configuration, count, configuration, data);
     66int 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);
    7768}
    7869
Note: See TracChangeset for help on using the changeset viewer.