Changes in uspace/srv/net/net/net.c [ffa2c8ef:73ac2e9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/net/net.c
rffa2c8ef r73ac2e9 47 47 #include <str_error.h> 48 48 49 #include <ipc/ipc.h> 49 50 #include <ipc/services.h> 50 51 #include <ipc/net.h> … … 325 326 static int net_module_start(async_client_conn_t client_connection) 326 327 { 328 sysarg_t phonehash; 327 329 int rc; 328 330 … … 336 338 goto out; 337 339 338 rc = async_connect_to_me(PHONE_NS, SERVICE_NETWORKING, 0, 0, NULL);340 rc = ipc_connect_to_me(PHONE_NS, SERVICE_NETWORKING, 0, 0, &phonehash); 339 341 if (rc != EOK) 340 342 goto out; … … 685 687 * - Answer the first IPC_M_CONNECT_ME_TO call. 686 688 */ 687 async_answer_0(iid, EOK);689 ipc_answer_0(iid, EOK); 688 690 689 691 while (true) {
Note:
See TracChangeset
for help on using the changeset viewer.