Changeset 409f5fc in mainline for uspace/srv/net/net/net_standalone.c
- Timestamp:
- 2010-11-06T10:36:30Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 68f0c3a
- Parents:
- 32efd86
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/net/net_standalone.c
r32efd86 r409f5fc 42 42 #include <ipc/ipc.h> 43 43 #include <ipc/net.h> 44 #include <errno.h> 44 45 45 46 #include <ip_interface.h> … … 60 61 int net_initialize_build(async_client_conn_t client_connection) 61 62 { 62 ERROR_DECLARE;63 int rc; 63 64 64 65 task_id_t task_id = spawn("/srv/ip"); … … 66 67 return EINVAL; 67 68 68 ERROR_PROPAGATE(add_module(NULL, &net_globals.modules, IP_NAME, 69 IP_FILENAME, SERVICE_IP, task_id, ip_connect_module)); 69 rc = add_module(NULL, &net_globals.modules, IP_NAME, 70 IP_FILENAME, SERVICE_IP, task_id, ip_connect_module); 71 if (rc != EOK) 72 return rc; 70 73 71 74 if (!spawn("/srv/icmp"))
Note:
See TracChangeset
for help on using the changeset viewer.