Changes in uspace/srv/net/il/ip/ip.c [514ee46:c62ae1d6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/ip.c
r514ee46 rc62ae1d6 45 45 #include <ipc/services.h> 46 46 #include <ipc/net.h> 47 #include <ipc/nil.h> 48 #include <ipc/il.h> 49 #include <ipc/ip.h> 47 50 #include <sys/types.h> 48 51 #include <byteorder.h> … … 71 74 #include <packet_client.h> 72 75 #include <packet_remote.h> 73 #include <nil_messages.h>74 #include <il_messages.h>75 76 #include <il_local.h> 76 #include <ip_local.h>77 77 78 78 #include "ip.h" 79 79 #include "ip_header.h" 80 #include "ip_messages.h"81 80 #include "ip_module.h" 81 #include "ip_local.h" 82 82 83 83 /** IP module name. … … 423 423 ip_globals.client_connection = client_connection; 424 424 ERROR_PROPAGATE(modules_initialize(&ip_globals.modules)); 425 ERROR_PROPAGATE(add_module(NULL, &ip_globals.modules, ARP_NAME, ARP_FILENAME, SERVICE_ARP, arp_task_get_id(), arp_connect_module));425 ERROR_PROPAGATE(add_module(NULL, &ip_globals.modules, ARP_NAME, ARP_FILENAME, SERVICE_ARP, 0, arp_connect_module)); 426 426 fibril_rwlock_write_unlock(&ip_globals.lock); 427 427 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.