Ignore:
Timestamp:
2010-04-09T12:54:57Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1caa3c2
Parents:
24ab58b3
Message:

networking overhaul:

  • separation of conserns
  • removal of (almost all) overlaping symbols, libnetif is not needed anymore
  • again, it is possible to build the networking in multiple architecture configurations (however, currently only the bundling netif and nil layers is supported, more to come)
  • code style updates and fixes (still a huge amount of work to do)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/nil/nildummy/nildummy_module.c

    r24ab58b3 r14f1db0  
    4646#include <net_interface.h>
    4747#include <packet/packet.h>
    48 #include <nil_module.h>
    49 #include <nil_standalone.h>
     48#include <nil_local.h>
    5049
    5150#include "nildummy.h"
     
    6766 *
    6867 */
    69 int nil_module_start(async_client_conn_t client_connection)
     68int nil_module_start_standalone(async_client_conn_t client_connection)
    7069{
    7170        ERROR_DECLARE;
     
    103102 *
    104103 */
    105 int nil_module_message(const char *name, ipc_callid_t callid,
     104int nil_module_message_standalone(const char *name, ipc_callid_t callid,
    106105    ipc_call_t *call, ipc_call_t *answer, int *answer_count)
    107106{
    108         return nil_message(name, callid, call, answer, answer_count);
     107        return nil_message_standalone(name, callid, call, answer, answer_count);
    109108}
    110109
Note: See TracChangeset for help on using the changeset viewer.