Changeset 9757512 in mainline
- Timestamp:
- 2010-10-13T19:47:05Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ff2a62d
- Parents:
- f4af048
- Location:
- uspace/lib/net/netif
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/netif/netif_local.c
rf4af048 r9757512 228 228 229 229 return ERROR_CODE; 230 }231 232 /** Create bidirectional connection with the network interface module and registers the message receiver.233 *234 * @param[in] service The network interface module service.235 * @param[in] device_id The device identifier.236 * @param[in] me The requesting module service.237 * @param[in] receiver The message receiver.238 *239 * @return The phone of the needed service.240 * @return EOK on success.241 * @return Other error codes as defined for the bind_service() function.242 *243 */244 int netif_bind_service_local(services_t service, device_id_t device_id,245 services_t me, async_client_conn_t receiver)246 {247 return EOK;248 230 } 249 231 -
uspace/lib/net/netif/netif_remote.c
rf4af048 r9757512 91 91 } 92 92 93 /** Create bidirectional connection with the network interface module and 94 * registers the message receiver. 95 * 96 * @param[in] service The network interface module service. 97 * @param[in] device_id The device identifier. 98 * @param[in] me The requesting module service. 99 * @param[in] receiver The message receiver. 100 * 101 * @return The phone of the needed service. 102 * @return EOK on success. 103 * @return Other error codes as defined for the bind_service() function. 104 * 105 */ 93 106 int netif_bind_service_remote(services_t service, device_id_t device_id, services_t me, 94 107 async_client_conn_t receiver)
Note:
See TracChangeset
for help on using the changeset viewer.