Changeset 797b704 in mainline for uspace/lib/net/include/il_skel.h
- Timestamp:
- 2011-01-12T14:40:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 014dd57b
- Parents:
- 73ac2e9
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/il_skel.h
r73ac2e9 r797b704 27 27 */ 28 28 29 /** @addtogroup libnet 29 /** @addtogroup libnet 30 30 * @{ 31 31 */ 32 32 33 #ifndef LIBNET_IL_ LOCAL_H_34 #define LIBNET_IL_ LOCAL_H_33 #ifndef LIBNET_IL_SKEL_H_ 34 #define LIBNET_IL_SKEL_H_ 35 35 36 /** @file 37 * Internetwork layer module skeleton. 38 * The skeleton has to be part of each internetwork layer module. 39 */ 40 41 #include <async.h> 42 #include <fibril_synch.h> 36 43 #include <ipc/ipc.h> 37 #include < async.h>44 #include <ipc/services.h> 38 45 39 /** Processes the Internet layer module message. 46 #include <adt/measured_strings.h> 47 #include <net/device.h> 48 #include <net/packet.h> 49 50 /** Module initialization. 40 51 * 41 * @param[in] callid The message identifier. 42 * @param[in] call The message parameters. 43 * @param[out] answer The message answer parameters. 44 * @param[out] answer_count The last parameter for the actual answer in 45 * the answer parameter. 46 * @return EOK on success. 47 * @return Other error codes as defined for the arp_message() 48 * function. 52 * This has to be implemented in user code. 53 * 54 * @param[in] net_phone Networking module phone. 55 * 56 * @return EOK on success. 57 * @return Other error codes as defined for each specific module 58 * initialize function. 59 * 60 */ 61 extern int il_initialize(int net_phone); 62 63 /** Process the Internet layer module message. 64 * 65 * This has to be implemented in user code. 66 * 67 * @param[in] callid Message identifier. 68 * @param[in] call Message parameters. 69 * @param[out] answer Answer. 70 * @param[out] count Number of arguments of the answer. 71 * 72 * @return EOK on success. 73 * @return Other error codes as defined for the arp_message() 74 * function. 75 * 49 76 */ 50 77 extern int il_module_message(ipc_callid_t callid, ipc_call_t *call, 51 78 ipc_call_t *answer, size_t *answer_count); 52 79 53 /** Starts the Internet layer module. 54 * 55 * Initializes the client connection servicing function, initializes the module, 56 * registers the module service and starts the async manager, processing IPC 57 * messages in an infinite loop. 58 * 59 * @param[in] client_connection The client connection processing function. The 60 * module skeleton propagates its own one. 61 * @return EOK on successful module termination. 62 * @return Other error codes as defined for the arp_initialize() 63 * function. 64 * @return Other error codes as defined for the REGISTER_ME() macro 65 * function. 66 */ 67 extern int il_module_start(async_client_conn_t client_connection); 80 extern int il_module_start(int); 68 81 69 82 #endif
Note:
See TracChangeset
for help on using the changeset viewer.