Rev 4350 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4350 | Rev 4351 | ||
---|---|---|---|
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 | * @returns EOK on success. |
45 | * @returns EOK on success. |
45 | * @returns ENOMEM if there is not enough memory left. |
46 | * @returns ENOMEM if there is not enough memory left. |
46 | */ |
47 | */ |
47 | int arp_initialize( void ); |
48 | int arp_initialize( async_client_conn_t client_connection ); |
48 | 49 | ||
49 | /** Processes the ARP message. |
50 | /** Processes the ARP message. |
50 | * @param callid The message identifier. Input parameter. |
51 | * @param callid The message identifier. Input parameter. |
51 | * @param call The message parameters. Input parameter. |
52 | * @param call The message parameters. Input parameter. |
52 | * @param answer The message answer parameters. Output parameter. |
53 | * @param answer The message answer parameters. Output parameter. |