Subversion Repositories HelenOS

Rev

Rev 4704 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4704 Rev 4705
Line 64... Line 64...
64
 
64
 
65
/** Starts the UDP module.
65
/** Starts the UDP module.
66
 *  Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop.
66
 *  Initializes the client connection serving function, initializes the module, registers the module service and starts the async manager, processing IPC messages in an infinite loop.
67
 *  @param client_connection The client connection processing function. The module skeleton propagates its own one. Input parameter.
67
 *  @param client_connection The client connection processing function. The module skeleton propagates its own one. Input parameter.
68
 *  @returns EOK on successful module termination.
68
 *  @returns EOK on successful module termination.
69
 *  @returns Other error codes as defined for the arp_initialize() function.
69
 *  @returns Other error codes as defined for the udp_initialize() function.
70
 *  @returns Other error codes as defined for the REGISTER_ME() macro function.
70
 *  @returns Other error codes as defined for the REGISTER_ME() macro function.
71
 */
71
 */
72
int module_start( async_client_conn_t client_connection );
72
int module_start( async_client_conn_t client_connection );
73
 
73
 
74
/** Processes the UDP message.
74
/** Processes the UDP message.