Changeset f14291b in mainline for uspace/lib/net/netif/netif_remote.c
- Timestamp:
- 2010-10-19T20:55:53Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a93d79a
- Parents:
- 1882525 (diff), a7a85d16 (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/lib/net/netif/netif_remote.c
r1882525 rf14291b 36 36 37 37 #include <ipc/services.h> 38 #include <ipc/netif.h> 38 39 39 #include <net _modules.h>40 #include <net/modules.h> 40 41 #include <adt/measured_strings.h> 41 #include < packet/packet.h>42 #include <packet /packet_client.h>43 #include <net _device.h>42 #include <net/packet.h> 43 #include <packet_client.h> 44 #include <net/device.h> 44 45 #include <netif_remote.h> 45 #include < netif_messages.h>46 #include <generic.h> 46 47 47 48 int netif_get_addr_req_remote(int netif_phone, device_id_t device_id, … … 90 91 } 91 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 */ 92 106 int netif_bind_service_remote(services_t service, device_id_t device_id, services_t me, 93 107 async_client_conn_t receiver)
Note:
See TracChangeset
for help on using the changeset viewer.