source: mainline/uspace/lib/net/include/nil_skel.h@ ffa2c8ef

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ffa2c8ef was ffa2c8ef, checked in by Martin Decky <martin@…>, 14 years ago

do not intermix low-level IPC methods with async framework methods

  • Property mode set to 100644
File size: 3.8 KB
Line 
1/*
2 * Copyright (c) 2009 Lukas Mejdrech
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libnet
30 * @{
31 */
32
33/** @file
34 * Network interface layer modules common skeleton.
35 * All network interface layer modules have to implement this interface.
36 */
37
38#ifndef LIBNET_NIL_SKEL_H_
39#define LIBNET_NIL_SKEL_H_
40
41#include <async.h>
42#include <fibril_synch.h>
43#include <ipc/services.h>
44
45#include <adt/measured_strings.h>
46#include <net/device.h>
47#include <net/packet.h>
48
49/** Module initialization.
50 *
51 * This has to be implemented in user code.
52 *
53 * @param[in] net_phone Networking module phone.
54 *
55 * @return EOK on success.
56 * @return Other error codes as defined for each specific module
57 * initialize function.
58 *
59 */
60extern int nil_initialize(int net_phone);
61
62/** Notify the network interface layer about the device state change.
63 *
64 * This has to be implemented in user code.
65 *
66 * @param[in] nil_phone Network interface layer phone.
67 * @param[in] device_id Device identifier.
68 * @param[in] state New device state.
69 *
70 * @return EOK on success.
71 * @return Other error codes as defined for each specific module
72 * device state function.
73 *
74 */
75extern int nil_device_state_msg_local(int, device_id_t, int);
76
77/** Pass the packet queue to the network interface layer.
78 *
79 * Process and redistribute the received packet queue to the registered
80 * upper layers.
81 *
82 * This has to be implemented in user code.
83 *
84 * @param[in] nil_phone Network interface layer phone.
85 * @param[in] device_id Source device identifier.
86 * @param[in] packet Received packet or the received packet queue.
87 * @param[in] target Target service. Ignored parameter.
88 *
89 * @return EOK on success.
90 * @return Other error codes as defined for each specific module
91 * received function.
92 *
93 */
94extern int nil_received_msg_local(int, device_id_t, packet_t *, services_t);
95
96/** Message processing function.
97 *
98 * This has to be implemented in user code.
99 *
100 * @param[in] name Module name.
101 * @param[in] callid Message identifier.
102 * @param[in] call Message parameters.
103 * @param[out] answer Message answer parameters.
104 * @param[out] count Message answer arguments.
105 *
106 * @return EOK on success.
107 * @return ENOTSUP if the message is not known.
108 * @return Other error codes as defined for each specific module
109 * message function.
110 *
111 * @see IS_NET_NIL_MESSAGE()
112 *
113 */
114extern int nil_module_message(ipc_callid_t, ipc_call_t *, ipc_call_t *,
115 size_t *);
116
117extern int nil_module_start(int);
118
119#endif
120
121/** @}
122 */
Note: See TracBrowser for help on using the repository browser.