Changeset 87b4baa in mainline for uspace/srv/net/net/net.c
- Timestamp:
- 2010-12-17T20:16:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 424558a
- Parents:
- 463e734 (diff), bbc74af7 (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.c
r463e734 r87b4baa 322 322 static int net_module_start(async_client_conn_t client_connection) 323 323 { 324 ipcarg_t phonehash;324 sysarg_t phonehash; 325 325 int rc; 326 326 … … 335 335 goto out; 336 336 337 rc = REGISTER_ME(SERVICE_NETWORKING, &phonehash);337 rc = ipc_connect_to_me(PHONE_NS, SERVICE_NETWORKING, 0, 0, &phonehash); 338 338 if (rc != EOK) 339 339 goto out; … … 632 632 633 633 *answer_count = 0; 634 switch (IPC_GET_ METHOD(*call)) {634 switch (IPC_GET_IMETHOD(*call)) { 635 635 case IPC_M_PHONE_HUNGUP: 636 636 return EOK; … … 697 697 698 698 /* End if told to either by the message or the processing result */ 699 if ((IPC_GET_ METHOD(call) == IPC_M_PHONE_HUNGUP) || (res == EHANGUP))699 if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) || (res == EHANGUP)) 700 700 return; 701 701
Note:
See TracChangeset
for help on using the changeset viewer.