Changeset 60ab6c3 in mainline for uspace/srv/net/net/net_standalone.c


Ignore:
Timestamp:
2010-03-10T05:46:54Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5782081
Parents:
71b00dcc (diff), b48ebd19 (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.
Message:

Merge from lp:~lukasmejdrech/helenos/network.

File:
1 edited

Legend:

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

    r71b00dcc r60ab6c3  
    5353extern net_globals_t    net_globals;
    5454
    55 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
    56         if(IS_NET_PACKET_MESSAGE(call)){
    57                 return packet_server_message(callid, call, answer, answer_count);
    58         }else{
    59                 return net_message(callid, call, answer, answer_count);
    60         }
    61 }
    62 
    6355int net_initialize_build(async_client_conn_t client_connection){
    6456        ERROR_DECLARE;
     
    8375}
    8476
     77int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
     78        if(IS_NET_PACKET_MESSAGE(call)){
     79                return packet_server_message(callid, call, answer, answer_count);
     80        }else{
     81                return net_message(callid, call, answer, answer_count);
     82        }
     83}
     84
    8585/** @}
    8686 */
Note: See TracChangeset for help on using the changeset viewer.