Pull fix from branch_1_1
[freeradius.git] / src / include / packet.h
1 #ifndef LRAD_PACKET_H
2 #define LRAD_PACKET_H
3
4 /*
5  * packet.h     Structures and prototypes
6  *              for packet manipulation
7  *
8  * Version:     $Id$
9  *
10  *   This program is free software; you can redistribute it and/or modify
11  *   it under the terms of the GNU General Public License as published by
12  *   the Free Software Foundation; either version 2 of the License, or
13  *   (at your option) any later version.
14  *
15  *   This program is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with this program; if not, write to the Free Software
22  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  *
24  * Copyright 2001,2002,2003,2004,2005,2006  The FreeRADIUS server project
25  */
26
27 #include <freeradius-devel/ident.h>
28 RCSIDH(packet_h, "$Id$")
29
30 uint32_t lrad_request_packet_hash(const RADIUS_PACKET *packet);
31 uint32_t lrad_reply_packet_hash(const RADIUS_PACKET *packet);
32 int lrad_packet_cmp(const RADIUS_PACKET *a, const RADIUS_PACKET *b);
33 void lrad_request_from_reply(RADIUS_PACKET *request,
34                              const RADIUS_PACKET *reply);
35 int lrad_socket(lrad_ipaddr_t *ipaddr, int port);
36
37 typedef struct lrad_packet_list_t lrad_packet_list_t;
38
39 lrad_packet_list_t *lrad_packet_list_create(int alloc_id);
40 void lrad_packet_list_free(lrad_packet_list_t *pl);
41 int lrad_packet_list_insert(lrad_packet_list_t *pl,
42                             RADIUS_PACKET **request_p);
43
44 RADIUS_PACKET **lrad_packet_list_find(lrad_packet_list_t *pl,
45                                       RADIUS_PACKET *request);
46 RADIUS_PACKET **lrad_packet_list_find_byreply(lrad_packet_list_t *pl,
47                                               RADIUS_PACKET *reply);
48 RADIUS_PACKET **lrad_packet_list_yank(lrad_packet_list_t *pl,
49                                       RADIUS_PACKET *request);
50 int lrad_packet_list_num_elements(lrad_packet_list_t *pl);
51 int lrad_packet_list_id_alloc(lrad_packet_list_t *pl,
52                               RADIUS_PACKET *request);
53 int lrad_packet_list_id_free(lrad_packet_list_t *pl,
54                              RADIUS_PACKET *request);
55 int lrad_packet_list_socket_add(lrad_packet_list_t *pl, int sockfd);
56 int lrad_packet_list_socket_remove(lrad_packet_list_t *pl, int sockfd);
57 int lrad_packet_list_walk(lrad_packet_list_t *pl, void *ctx,
58                           lrad_hash_table_walk_t callback);
59 int lrad_packet_list_fd_set(lrad_packet_list_t *pl, fd_set *set);
60 RADIUS_PACKET *lrad_packet_list_recv(lrad_packet_list_t *pl, fd_set *set);
61
62 int lrad_packet_list_num_incoming(lrad_packet_list_t *pl);
63 int lrad_packet_list_num_outgoing(lrad_packet_list_t *pl);
64
65
66 #ifndef offsetof
67 # define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
68 #endif
69
70 /*
71  *      "find" returns a pointer to the RADIUS_PACKET* member in the
72  *      caller's structure.  In order to get the pointer to the *top*
73  *      of the caller's structure, you have to subtract the offset to
74  *      the member from the returned pointer, and cast it to the
75  *      required type.
76  */
77 # define lrad_packet2myptr(TYPE, MEMBER, PTR) (TYPE *) (((char *)PTR) - offsetof(TYPE, MEMBER))
78 #endif /* LRAD_PACKET_H */