Changeset 9934f7d in mainline for uspace/lib/c/generic/net
- Timestamp:
- 2011-06-13T19:53:48Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a07a454
- Parents:
- 43ac0cc
- Location:
- uspace/lib/c/generic/net
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/net/modules.c
r43ac0cc r9934f7d 141 141 if (phone >= 0) { 142 142 /* Request the bidirectional connection */ 143 int rc = async_obsolete_connect_to_me(phone, arg1, arg2, arg3, client_receiver); 143 int rc = async_obsolete_connect_to_me(phone, arg1, arg2, arg3, 144 client_receiver, NULL); 144 145 if (rc != EOK) { 145 146 async_obsolete_hangup(phone); -
uspace/lib/c/generic/net/socket_client.c
r43ac0cc r9934f7d 203 203 * @param[in] iid The initial message identifier. 204 204 * @param[in] icall The initial message call structure. 205 */ 206 static void socket_connection(ipc_callid_t iid, ipc_call_t * icall) 205 * @param[in] arg Local argument. 206 */ 207 static void socket_connection(ipc_callid_t iid, ipc_call_t * icall, void *arg) 207 208 { 208 209 ipc_callid_t callid;
Note:
See TracChangeset
for help on using the changeset viewer.