[fe8dfa6] | 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 | *
|
---|
[797b704] | 51 | * This has to be implemented in user code.
|
---|
[fe8dfa6] | 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 | */
|
---|
[797b704] | 60 | extern int nil_initialize(int net_phone);
|
---|
[fe8dfa6] | 61 |
|
---|
| 62 | /** Notify the network interface layer about the device state change.
|
---|
[797b704] | 63 | *
|
---|
| 64 | * This has to be implemented in user code.
|
---|
[fe8dfa6] | 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 | */
|
---|
| 75 | extern 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 | *
|
---|
[797b704] | 82 | * This has to be implemented in user code.
|
---|
| 83 | *
|
---|
[fe8dfa6] | 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 | */
|
---|
| 94 | extern int nil_received_msg_local(int, device_id_t, packet_t *, services_t);
|
---|
| 95 |
|
---|
| 96 | /** Message processing function.
|
---|
[797b704] | 97 | *
|
---|
| 98 | * This has to be implemented in user code.
|
---|
[fe8dfa6] | 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 | */
|
---|
| 114 | extern int nil_module_message(ipc_callid_t, ipc_call_t *, ipc_call_t *,
|
---|
| 115 | size_t *);
|
---|
| 116 |
|
---|
| 117 | extern int nil_module_start(int);
|
---|
| 118 |
|
---|
| 119 | #endif
|
---|
| 120 |
|
---|
| 121 | /** @}
|
---|
| 122 | */
|
---|