Changes in uspace/srv/net/netif/netif_module.h [aadf01e:9c9c6a9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/netif_module.h
raadf01e r9c9c6a9 50 50 /** Initializes the specific module. 51 51 */ 52 int netif_initialize(void);52 int netif_initialize( void ); 53 53 54 54 /** Probes the existence of the device. … … 60 60 * @returns Other error codes as defined for the specific module message implementation. 61 61 */ 62 int netif_probe_message(device_id_t device_id, int irq, uintptr_t io);62 int netif_probe_message( device_id_t device_id, int irq, uintptr_t io ); 63 63 64 64 /** Sends the packet queue. … … 71 71 * @returns Other error codes as defined for the specific module message implementation. 72 72 */ 73 int netif_send_message(device_id_t device_id, packet_t packet, services_t sender);73 int netif_send_message( device_id_t device_id, packet_t packet, services_t sender ); 74 74 75 75 /** Starts the device. … … 79 79 * @returns Other error codes as defined for the specific module message implementation. 80 80 */ 81 int netif_start_message(device_ref device);81 int netif_start_message( device_ref device ); 82 82 83 83 /** Stops the device. … … 87 87 * @returns Other error codes as defined for the specific module message implementation. 88 88 */ 89 int netif_stop_message(device_ref device);89 int netif_stop_message( device_ref device ); 90 90 91 91 /** Returns the device local hardware address. … … 98 98 * @returns Other error codes as defined for the specific module message implementation. 99 99 */ 100 int netif_get_addr_message(device_id_t device_id, measured_string_ref address);100 int netif_get_addr_message( device_id_t device_id, measured_string_ref address ); 101 101 102 102 /** Processes the netif driver specific message. … … 110 110 * @returns Other error codes as defined for the specific module message implementation. 111 111 */ 112 int netif_specific_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count);112 int netif_specific_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count ); 113 113 114 114 /** Returns the device usage statistics. … … 119 119 * @returns Other error codes as defined for the specific module message implementation. 120 120 */ 121 int netif_get_device_stats(device_id_t device_id, device_stats_ref stats);121 int netif_get_device_stats( device_id_t device_id, device_stats_ref stats ); 122 122 123 123 #endif
Note:
See TracChangeset
for help on using the changeset viewer.