Changeset efedee77 in mainline for uspace/srv/net/nil/nildummy/nildummy_module.c
- Timestamp:
- 2010-11-02T22:38:46Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- af894a21
- Parents:
- aab02fb (diff), e06ef614 (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/nil/nildummy/nildummy_module.c
raab02fb refedee77 38 38 #include <async.h> 39 39 #include <stdio.h> 40 #include <err.h> 40 41 41 42 #include <ipc/ipc.h> 42 43 #include <ipc/services.h> 43 44 44 #include <net_err.h> 45 #include <net_modules.h> 45 #include <net/modules.h> 46 46 #include <net_interface.h> 47 #include < packet/packet.h>47 #include <net/packet.h> 48 48 #include <nil_local.h> 49 49 50 50 #include "nildummy.h" 51 51 52 /** Start the dummy nil module.53 *54 * Initialize the client connection serving function, initialize55 * the module, register the module service and start the async56 * manager, processing IPC messages in an infinite loop.57 *58 * @param[in] client_connection The client connection processing59 * function. The module skeleton propagates60 * its own one.61 *62 * @return EOK on success.63 * @return Other error codes as defined for the pm_init() function.64 * @return Other error codes as defined for the nil_initialize() function.65 * @return Other error codes as defined for the REGISTER_ME() macro function.66 *67 */68 52 int nil_module_start_standalone(async_client_conn_t client_connection) 69 53 { … … 71 55 72 56 async_set_client_connection(client_connection); 73 int net_phone = net_connect_module( SERVICE_NETWORKING);57 int net_phone = net_connect_module(); 74 58 ERROR_PROPAGATE(pm_init()); 75 59 76 60 ipcarg_t phonehash; 77 if (ERROR_OCCURRED(nil_initialize(net_phone)) 78 || ERROR_OCCURRED(REGISTER_ME(SERVICE_NILDUMMY, &phonehash))){61 if (ERROR_OCCURRED(nil_initialize(net_phone)) || 62 ERROR_OCCURRED(REGISTER_ME(SERVICE_NILDUMMY, &phonehash))) { 79 63 pm_destroy(); 80 64 return ERROR_CODE; … … 87 71 } 88 72 89 /** Pass the parameters to the module specific nil_message() function. 90 * 91 * @param[in] name Module name. 92 * @param[in] callid The message identifier. 93 * @param[in] call The message parameters. 94 * @param[out] answer The message answer parameters. 95 * @param[out] answer_count The last parameter for the actual answer 96 * in the answer parameter. 97 * 98 * @return EOK on success. 99 * @return ENOTSUP if the message is not known. 100 * @return Other error codes as defined for each specific 101 * module message function. 102 * 103 */ 104 int nil_module_message_standalone(const char *name, ipc_callid_t callid, 73 int 74 nil_module_message_standalone(const char *name, ipc_callid_t callid, 105 75 ipc_call_t *call, ipc_call_t *answer, int *answer_count) 106 76 {
Note:
See TracChangeset
for help on using the changeset viewer.