Changeset 60ab6c3 in mainline for uspace/srv/net/il/arp/arp_module.c
- Timestamp:
- 2010-03-10T05:46:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5782081
- Parents:
- 71b00dcc (diff), b48ebd19 (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/arp/arp_module.c
r71b00dcc r60ab6c3 58 58 #define NAME "ARP protocol" 59 59 60 /** ARP module global data. 61 */ 62 extern arp_globals_t arp_globals; 63 64 /** Processes the ARP message. 65 * @param[in] callid The message identifier. 66 * @param[in] call The message parameters. 67 * @param[out] answer The message answer parameters. 68 * @param[out] answer_count The last parameter for the actual answer in the answer parameter. 69 * @returns EOK on success. 70 * @returns Other error codes as defined for the arp_message() function. 71 */ 72 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count); 73 60 74 /** Prints the module name. 61 75 * @see NAME … … 72 86 int module_start(async_client_conn_t client_connection); 73 87 74 /** Processes the ARP message. 75 * @param[in] callid The message identifier. 76 * @param[in] call The message parameters. 77 * @param[out] answer The message answer parameters. 78 * @param[out] answer_count The last parameter for the actual answer in the answer parameter. 79 * @returns EOK on success. 80 * @returns Other error codes as defined for the arp_message() function. 81 */ 82 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count); 83 84 /** ARP module global data. 85 */ 86 extern arp_globals_t arp_globals; 88 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){ 89 return arp_message(callid, call, answer, answer_count); 90 } 87 91 88 92 void module_print_name(void){ … … 110 114 } 111 115 112 int module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){113 return arp_message(callid, call, answer, answer_count);114 }115 116 116 /** @} 117 117 */
Note:
See TracChangeset
for help on using the changeset viewer.