Changeset a64c64d in mainline for uspace/srv/net/net/net_remote.c


Ignore:
Timestamp:
2010-03-09T22:24:31Z (14 years ago)
Author:
Lukas Mejdrech <lukasmejdrech@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
74520daf
Parents:
9f2ea28
Message:
  • code reorganization (no functional change)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/net/net_remote.c

    r9f2ea28 ra64c64d  
    5050#include "net_messages.h"
    5151
    52 int net_get_device_conf_req(int net_phone, device_id_t device_id, measured_string_ref * configuration, size_t count, char ** data){
    53         return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, device_id, 0, * configuration, count, configuration, data);
    54 }
    55 
    56 int net_get_conf_req(int net_phone, measured_string_ref * configuration, size_t count, char ** data){
    57         return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, 0, 0, * configuration, count, configuration, data);
     52int net_connect_module(services_t service){
     53        return connect_to_service(SERVICE_NETWORKING);
    5854}
    5955
     
    6763}
    6864
    69 int net_connect_module(services_t service){
    70         return connect_to_service(SERVICE_NETWORKING);
     65int net_get_conf_req(int net_phone, measured_string_ref * configuration, size_t count, char ** data){
     66        return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, 0, 0, * configuration, count, configuration, data);
     67}
     68
     69int net_get_device_conf_req(int net_phone, device_id_t device_id, measured_string_ref * configuration, size_t count, char ** data){
     70        return generic_translate_req(net_phone, NET_NET_GET_DEVICE_CONF, device_id, 0, * configuration, count, configuration, data);
    7171}
    7272
Note: See TracChangeset for help on using the changeset viewer.