Changeset 4687a26c in mainline for uspace/srv/net/il/ip/ip_module.h
- Timestamp:
- 2010-11-02T18:29:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4f35b9ff
- Parents:
- 76e1121f (diff), 28f4adb (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/il/ip/ip_module.h
r76e1121f r4687a26c 28 28 29 29 /** @addtogroup ip 30 * 30 * @{ 31 31 */ 32 32 33 33 /** @file 34 * 35 * 34 * IP module functions. 35 * The functions are used as IP module entry points. 36 36 */ 37 37 38 #ifndef __NET_IP_MODULE_H__39 #define __NET_IP_MODULE_H__38 #ifndef NET_IP_MODULE_H_ 39 #define NET_IP_MODULE_H_ 40 40 41 41 #include <ipc/ipc.h> 42 42 43 /** Initializes the IP module. 44 * @param[in] client_connection The client connection processing function. The module skeleton propagates its own one. 45 * @returns EOK on success. 46 * @returns ENOMEM if there is not enough memory left. 47 */ 48 int ip_initialize(async_client_conn_t client_connection); 49 50 /** Processes the IP message. 51 * @param[in] callid The message identifier. 52 * @param[in] call The message parameters. 53 * @param[out] answer The message answer parameters. 54 * @param[out] answer_count The last parameter for the actual answer in the answer parameter. 55 * @returns EOK on success. 56 * @returns ENOTSUP if the message is not known. 57 * @see ip_interface.h 58 * @see il_interface.h 59 * @see IS_NET_IP_MESSAGE() 60 */ 61 int ip_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count); 43 extern int ip_initialize(async_client_conn_t); 44 extern int ip_message_standalone(ipc_callid_t, ipc_call_t *, ipc_call_t *, 45 int *); 62 46 63 47 #endif
Note:
See TracChangeset
for help on using the changeset viewer.