Ignore:
Timestamp:
2010-04-04T21:41:47Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5db9084
Parents:
36a75a2 (diff), ee7e82a9 (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 mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/netif/netif_standalone.c

    r36a75a2 r59ecd4a  
    3636
    3737#include <async.h>
    38 
    3938#include <ipc/ipc.h>
    4039
    41 #include "netif.h"
     40#include <netif.h>
     41#include <netif_standalone.h>
    4242
    4343/** Delegates the messages to the netif_message() function.
     
    5050 *  @returns Other error codes as defined for each specific module message function.
    5151 */
    52 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count);
     52int netif_module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
     53        return netif_message(callid, call, answer, answer_count);
     54}
    5355
    5456/** Starts the network interface module.
     
    5860 *  @returns Other error codes as defined for each specific module message function.
    5961 */
    60 int module_start(async_client_conn_t client_connection);
    61 
    62 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
    63         return netif_message(callid, call, answer, answer_count);
    64 }
    65 
    66 int module_start(async_client_conn_t client_connection){
     62int netif_module_start(async_client_conn_t client_connection){
    6763        ERROR_DECLARE;
    6864
Note: See TracChangeset for help on using the changeset viewer.