Rev 4703 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4703 | Rev 4731 | ||
|---|---|---|---|
| Line 64... | Line 64... | ||
| 64 | /** Sends the packet queue. |
64 | /** Sends the packet queue. |
| 65 | * @param device_id The device identifier. Input parameter. |
65 | * @param device_id The device identifier. Input parameter. |
| 66 | * @param packet The packet queue. Input parameter. |
66 | * @param packet The packet queue. Input parameter. |
| 67 | * @param sender The sending module service. Input parameter. |
67 | * @param sender The sending module service. Input parameter. |
| 68 | * @returns EOK on success. |
68 | * @returns EOK on success. |
| - | 69 | * @returns EFORWARD if the device is not active (in the NETIF_ACTIVE state). |
|
| 69 | * @returns Other error codes as defined for the find_device() function. |
70 | * @returns Other error codes as defined for the find_device() function. |
| 70 | * @returns Other error codes as defined for the specific module message implementation. |
71 | * @returns Other error codes as defined for the specific module message implementation. |
| 71 | */ |
72 | */ |
| 72 | 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 ); |
| 73 | 74 | ||