Subversion Repositories HelenOS

Rev

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

Rev 4350 Rev 4351
Line 194... Line 194...
194
 *  @see IS_NET_NET_MESSAGE()
194
 *  @see IS_NET_NET_MESSAGE()
195
 */
195
 */
196
int net_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
196
int net_message( ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count );
197
 
197
 
198
/** Initializes the networking module.
198
/** Initializes the networking module.
-
 
199
 *  @param client_connection The client connection processing function. The module skeleton propagates its own one. Input parameter.
199
 *  @returns EOK on success.
200
 *  @returns EOK on success.
200
 *  @returns ENOMEM if there is not enough memory left.
201
 *  @returns ENOMEM if there is not enough memory left.
201
 */
202
 */
202
int net_initialize( void );
203
int net_initialize( async_client_conn_t client_connection );
203
 
204
 
204
/** Processes the module message.
205
/** Processes the module message.
205
 *  Distributes the message to the right bundled module.
206
 *  Distributes the message to the right bundled module.
206
 *  @param callid The message identifier. Input parameter.
207
 *  @param callid The message identifier. Input parameter.
207
 *  @param call The message parameters. Input parameter.
208
 *  @param call The message parameters. Input parameter.