Changeset 7715994 in mainline for uspace/srv/net/include/netif_interface.h
- Timestamp:
- 2010-03-13T12:17:02Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6ba20a6b
- Parents:
- d0febca (diff), 2070570 (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/include/netif_interface.h
rd0febca r7715994 65 65 * @returns Other error codes as defined for the netif_get_addr_message() function. 66 66 */ 67 int netif_get_addr_req( int netif_phone, device_id_t device_id, measured_string_ref * address, char ** data);67 int netif_get_addr_req(int netif_phone, device_id_t device_id, measured_string_ref * address, char ** data); 68 68 69 69 /** Probes the existence of the device. … … 75 75 * @returns Other errro codes as defined for the netif_probe_message(). 76 76 */ 77 int netif_probe_req( int netif_phone, device_id_t device_id, int irq, int io);77 int netif_probe_req(int netif_phone, device_id_t device_id, int irq, int io); 78 78 79 79 /** Sends the packet queue. … … 85 85 * @returns Other error codes as defined for the generic_send_msg() function. 86 86 */ 87 int netif_send_msg( int netif_phone, device_id_t device_id, packet_t packet, services_t sender);87 int netif_send_msg(int netif_phone, device_id_t device_id, packet_t packet, services_t sender); 88 88 89 89 /** Starts the device. … … 94 94 * @returns Other error codes as defined for the netif_start_message() function. 95 95 */ 96 int netif_start_req( int netif_phone, device_id_t device_id);96 int netif_start_req(int netif_phone, device_id_t device_id); 97 97 98 98 /** Stops the device. … … 103 103 * @returns Other error codes as defined for the netif_stop_message() function. 104 104 */ 105 int netif_stop_req( int netif_phone, device_id_t device_id);105 int netif_stop_req(int netif_phone, device_id_t device_id); 106 106 107 107 /** Returns the device usage statistics. … … 111 111 * @returns EOK on success. 112 112 */ 113 int netif_stats_req( int netif_phone, device_id_t device_id, device_stats_ref stats);113 int netif_stats_req(int netif_phone, device_id_t device_id, device_stats_ref stats); 114 114 115 115 /** Creates bidirectional connection with the network interface module and registers the message receiver. … … 122 122 * @returns Other error codes as defined for the bind_service() function. 123 123 */ 124 int netif_bind_service( services_t service, device_id_t device_id, services_t me, async_client_conn_t receiver);124 int netif_bind_service(services_t service, device_id_t device_id, services_t me, async_client_conn_t receiver); 125 125 126 126 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.