Rev 4351 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4351 | Rev 4756 | ||
---|---|---|---|
Line 39... | Line 39... | ||
39 | #define __NET_ARP_MODULE_H__ |
39 | #define __NET_ARP_MODULE_H__ |
40 | 40 | ||
41 | #include <ipc/ipc.h> |
41 | #include <ipc/ipc.h> |
42 | 42 | ||
43 | /** Initializes the ARP module. |
43 | /** Initializes the ARP module. |
44 | * @param client_connection The client connection processing function. The module skeleton propagates its own one. Input parameter. |
44 | * @param[in] client_connection The client connection processing function. The module skeleton propagates its own one. |
45 | * @returns EOK on success. |
45 | * @returns EOK on success. |
46 | * @returns ENOMEM if there is not enough memory left. |
46 | * @returns ENOMEM if there is not enough memory left. |
47 | */ |
47 | */ |
48 | int arp_initialize( async_client_conn_t client_connection ); |
48 | int arp_initialize( async_client_conn_t client_connection ); |
49 | 49 | ||
50 | /** Processes the ARP message. |
50 | /** Processes the ARP message. |
51 | * @param callid The message identifier. Input parameter. |
51 | * @param[in] callid The message identifier. |
52 | * @param call The message parameters. Input parameter. |
52 | * @param[in] call The message parameters. |
53 | * @param answer The message answer parameters. Output parameter. |
53 | * @param[out] answer The message answer parameters. |
54 | * @param answer_count The last parameter for the actual answer in the answer parameter. Output parameter. |
54 | * @param[out] answer_count The last parameter for the actual answer in the answer parameter. |
55 | * @returns EOK on success. |
55 | * @returns EOK on success. |
56 | * @returns ENOTSUP if the message is not known. |
56 | * @returns ENOTSUP if the message is not known. |
57 | * @see arp_interface.h |
57 | * @see arp_interface.h |
58 | * @see IS_NET_ARP_MESSAGE() |
58 | * @see IS_NET_ARP_MESSAGE() |
59 | */ |
59 | */ |