source: mainline/uspace/srv/net/structures/packet/packet.h@ 7fb2ce3

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7fb2ce3 was 21580dd, checked in by Lukas Mejdrech <lukas@…>, 16 years ago

Merged with network branch svn://svn.helenos.org/HelenOS/branches/network revision 4759; ipc_share_* and ipc_data_* changed to async_*; client connection in module.c returns on IPC_M_PHONE_HUNGUP; * Qemu scripts renamed to net-qe.*; (the dp8390 does not respond)

  • Property mode set to 100644
File size: 5.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 packet
30 * @{
31 */
32
33/** @file
34 * Packet map and queue.
35 */
36
37#ifndef __NET_PACKET_H__
38#define __NET_PACKET_H__
39
40/** Packet identifier type.
41 * Value zero (0) is used as an invalid identifier.
42 */
43typedef int packet_id_t;
44
45/** Type definition of the packet.
46 * @see packet
47 */
48typedef struct packet * packet_t;
49
50/** Type definition of the packet pointer.
51 * @see packet
52 */
53typedef packet_t * packet_ref;
54
55/** @name Packet management system interface
56 */
57/*@{*/
58
59/** Finds the packet mapping.
60 * @param[in] packet_id The packet identifier to be found.
61 * @returns The found packet reference.
62 * @returns NULL if the mapping does not exist.
63 */
64packet_t pm_find( packet_id_t packet_id );
65
66/** Adds the packet mapping.
67 * @param[in] packet The packet to be remembered.
68 * @returns EOK on success.
69 * @returns EINVAL if the packet is not valid.
70 * @returns EINVAL if the packet map is not initialized.
71 * @returns ENOMEM if there is not enough memory left.
72 */
73int pm_add( packet_t packet );
74
75/** Initializes the packet map.
76 * @returns EOK on success.
77 * @returns ENOMEM if there is not enough memory left.
78 */
79int pm_init( void );
80
81/** Releases the packet map.
82 */
83void pm_destroy( void );
84
85/** Add packet to the sorted queue.
86 * The queue is sorted in the ascending order.
87 * The packet is inserted right before the packets of the same order value.
88 * @param[in] first The first packet of the queue. May be NULL.
89 * @param[in] packet The packet to be added.
90 * @param[in] order The packet order value.
91 * @param[in] metric The metric value of the packet.
92 * @returns The first packet of the queue. The original first packet may be shifted by the new packet.
93 * @returns NULL if the packet is not valid.
94 */
95packet_t pq_add( packet_t first, packet_t packet, size_t order, size_t metric );
96
97/** Finds the packet with the given order.
98 * @param[in] first The first packet of the queue.
99 * @param[in] order The packet order value.
100 * @returns The packet with the given order.
101 * @returns NULL if the first packet is not valid.
102 * @returns NULL if the packet is not found.
103 */
104packet_t pq_find( packet_t first, size_t order );
105
106/** Inserts packet after the given one.
107 * @param[in] packet The packet in the queue.
108 * @param[in] new_packet The new packet to be inserted.
109 * @returns EOK on success.
110 * @returns EINVAL if etiher of the packets is invalid.
111 */
112int pq_insert_after( packet_t packet, packet_t new_packet );
113
114/** Detach the packet from the queue.
115 * @param[in] packet The packet to be detached.
116 * @returns The next packet in the queue. If the packet is the first one of the queue, this becomes the new first one.
117 * @returns NULL if there is no packet left.
118 * @returns NULL if the packet is not valid.
119 */
120packet_t pq_detach( packet_t packet );
121
122/** Sets the packet order and metric attributes.
123 * @param[in] packet The packet to be set.
124 * @param[in] order The packet order value.
125 * @param[in] metric The metric value of the packet.
126 * @returns EOK on success.
127 * @returns EINVAL if the packet is invalid..
128 */
129int pq_set_order( packet_t packet, size_t order, size_t metric );
130
131/** Sets the packet order and metric attributes.
132 * @param[in] packet The packet to be set.
133 * @param[out] order The packet order value.
134 * @param[out] metric The metric value of the packet.
135 * @returns EOK on success.
136 * @returns EINVAL if the packet is invalid..
137 */
138int pq_get_order( packet_t packet, size_t * order, size_t * metric );
139
140/** Releases the whole queue.
141 * Detaches all packets of the queue and calls the packet_release() for each of them.
142 * @param[in] first The first packet of the queue.
143 * @param[in] packet_release The releasing function called for each of the packets after its detachment.
144 */
145void pq_destroy( packet_t first, void ( * packet_release )( packet_t packet ));
146
147/** Returns the next packet in the queue.
148 * @param[in] packet The packet queue member.
149 * @returns The next packet in the queue.
150 * @returns NULL if there is no next packet.
151 * @returns NULL if the packet is not valid.
152 */
153packet_t pq_next( packet_t packet );
154
155/** Returns the previous packet in the queue.
156 * @param[in] packet The packet queue member.
157 * @returns The previous packet in the queue.
158 * @returns NULL if there is no previous packet.
159 * @returns NULL if the packet is not valid.
160 */
161packet_t pq_previous( packet_t packet );
162
163/*@}*/
164
165#endif
166
167/** @}
168 */
Note: See TracBrowser for help on using the repository browser.