Ignore:
File:
1 edited

Legend:

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

    r995689d1 r14f1db0  
    4242#include <ipc/ipc.h>
    4343#include <ipc/services.h>
    44 #include <ipc/netif.h>
    45 #include <err.h>
    46 
    47 #include <generic.h>
    48 #include <net/modules.h>
    49 #include <net/packet.h>
    50 #include <packet_client.h>
     44
     45#include <net_err.h>
     46#include <net_messages.h>
     47#include <net_modules.h>
     48#include <packet/packet.h>
     49#include <packet/packet_client.h>
     50#include <packet/packet_server.h>
    5151#include <packet_remote.h>
    5252#include <adt/measured_strings.h>
    53 #include <net/device.h>
     53#include <net_device.h>
    5454#include <nil_interface.h>
    5555#include <netif_local.h>
     56#include <netif_messages.h>
    5657#include <netif_interface.h>
    5758
     
    227228       
    228229        return ERROR_CODE;
     230}
     231
     232/** Create bidirectional connection with the network interface module and registers the message receiver.
     233 *
     234 * @param[in] service   The network interface module service.
     235 * @param[in] device_id The device identifier.
     236 * @param[in] me        The requesting module service.
     237 * @param[in] receiver  The message receiver.
     238 *
     239 * @return The phone of the needed service.
     240 * @return EOK on success.
     241 * @return Other error codes as defined for the bind_service() function.
     242 *
     243 */
     244int netif_bind_service_local(services_t service, device_id_t device_id,
     245    services_t me, async_client_conn_t receiver)
     246{
     247        return EOK;
    229248}
    230249
Note: See TracChangeset for help on using the changeset viewer.