Changeset 7bdcc45 in mainline for uspace/srv/net/tl/udp
- Timestamp:
- 2010-12-16T16:38:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7837101
- Parents:
- 8e58f94 (diff), eb221e5 (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. - Location:
- uspace/srv/net/tl/udp
- Files:
-
- 2 edited
-
udp.c (modified) (4 diffs)
-
udp_module.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/udp/udp.c
r8e58f94 r7bdcc45 393 393 fibril_rwlock_write_unlock(&udp_globals.lock); 394 394 async_msg_5(socket->phone, NET_SOCKET_RECEIVED, 395 ( ipcarg_t) socket->socket_id, packet_dimension->content, 0, 0,396 ( ipcarg_t) fragments);395 (sysarg_t) socket->socket_id, packet_dimension->content, 0, 0, 396 (sysarg_t) fragments); 397 397 398 398 return EOK; … … 742 742 743 743 /* Process the call */ 744 switch (IPC_GET_ METHOD(call)) {744 switch (IPC_GET_IMETHOD(call)) { 745 745 case IPC_M_PHONE_HUNGUP: 746 746 keep_on_going = false; … … 866 866 *answer_count = 0; 867 867 868 switch (IPC_GET_ METHOD(*call)) {868 switch (IPC_GET_IMETHOD(*call)) { 869 869 case NET_TL_RECEIVED: 870 870 rc = packet_translate_remote(udp_globals.net_phone, &packet, … … 913 913 * result. 914 914 */ 915 if ((IPC_GET_ METHOD(call) == IPC_M_PHONE_HUNGUP) ||915 if ((IPC_GET_IMETHOD(call) == IPC_M_PHONE_HUNGUP) || 916 916 (res == EHANGUP)) 917 917 return; -
uspace/srv/net/tl/udp/udp_module.c
r8e58f94 r7bdcc45 59 59 int tl_module_start_standalone(async_client_conn_t client_connection) 60 60 { 61 ipcarg_t phonehash;61 sysarg_t phonehash; 62 62 int rc; 63 63
Note:
See TracChangeset
for help on using the changeset viewer.
