Changes in uspace/srv/net/il/ip/ip.c [c62ae1d6:514ee46] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/ip/ip.c
rc62ae1d6 r514ee46 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>50 47 #include <sys/types.h> 51 48 #include <byteorder.h> … … 74 71 #include <packet_client.h> 75 72 #include <packet_remote.h> 73 #include <nil_messages.h> 74 #include <il_messages.h> 76 75 #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" 80 81 #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, 0, arp_connect_module));425 ERROR_PROPAGATE(add_module(NULL, &ip_globals.modules, ARP_NAME, ARP_FILENAME, SERVICE_ARP, arp_task_get_id(), 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.