Changeset 0b749a3 in mainline for uspace/srv/net/il/ip/ip_module.h


Ignore:
Timestamp:
2010-11-22T15:39:53Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0eddb76, aae339e9
Parents:
9a1d8ab (diff), 8cd1aa5e (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.
Message:

Merge development/ changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/ip/ip_module.h

    r9a1d8ab r0b749a3  
    2828
    2929/** @addtogroup ip
    30  *  @{
     30 * @{
    3131 */
    3232
    3333/** @file
    34  *  IP module functions.
    35  *  The functions are used as IP module entry points.
     34 * IP module functions.
     35 * The functions are used as IP module entry points.
    3636 */
    3737
    38 #ifndef __NET_IP_MODULE_H__
    39 #define __NET_IP_MODULE_H__
     38#ifndef NET_IP_MODULE_H_
     39#define NET_IP_MODULE_H_
    4040
    4141#include <ipc/ipc.h>
    4242
    43 /** Initializes the IP module.
    44  *  @param[in] client_connection The client connection processing function. The module skeleton propagates its own one.
    45  *  @returns EOK on success.
    46  *  @returns ENOMEM if there is not enough memory left.
    47  */
    48 int ip_initialize(async_client_conn_t client_connection);
    49 
    50 /** Processes the IP message.
    51  *  @param[in] callid The message identifier.
    52  *  @param[in] call The message parameters.
    53  *  @param[out] answer The message answer parameters.
    54  *  @param[out] answer_count The last parameter for the actual answer in the answer parameter.
    55  *  @returns EOK on success.
    56  *  @returns ENOTSUP if the message is not known.
    57  *  @see ip_interface.h
    58  *  @see il_interface.h
    59  *  @see IS_NET_IP_MESSAGE()
    60  */
    61 int ip_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count);
     43extern int ip_initialize(async_client_conn_t);
     44extern int ip_message_standalone(ipc_callid_t, ipc_call_t *, ipc_call_t *,
     45    int *);
    6246
    6347#endif
Note: See TracChangeset for help on using the changeset viewer.