Changeset 7494fb4 in mainline for uspace/srv/net/net/net_standalone.c
- Timestamp:
- 2010-11-13T19:12:37Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c7137738
- Parents:
- 63a1e60 (diff), 71e3289 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/net/net_standalone.c
r63a1e60 r7494fb4 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.