1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#ifndef FR_PROTOCOL_H
#define FR_PROTOCOL_H
/*
* heap.h Structures and prototypes for plug-in protocols
* Version: $Id$
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
* Copyright 2013 Alan DeKok
*/
RCSIDH(protocol_h, "$Id$")
#ifdef __cplusplus
extern "C" {
#endif
/*
* We'll use this below.
*/
typedef int (*rad_listen_parse_t)(CONF_SECTION *, rad_listen_t *);
typedef void (*rad_listen_free_t)(rad_listen_t *);
typedef struct fr_protocol_t {
uint64_t magic; //!< Used to validate loaded library
char const *name; //!< The name of the protocol
size_t inst_size;
CONF_PARSER *proto_config;
rad_listen_parse_t parse;
rad_listen_free_t free;
rad_listen_recv_t recv;
rad_listen_send_t send;
rad_listen_print_t print;
rad_listen_encode_t encode;
rad_listen_decode_t decode;
} fr_protocol_t;
/*
* @todo: fix for later
*/
int common_socket_parse(CONF_SECTION *cs, rad_listen_t *this);
int common_socket_print(rad_listen_t const *this, char *buffer, size_t bufsize);
#ifdef __cplusplus
}
#endif
#endif /* FR_PROTOCOL_H */
|