blob: fd69c586427d5d5a2ee133bdc52fea05e938f849 (
plain)
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
64
65
|
/** @file libradsec.h
@brief Header file for libradsec. */
/* FIXME: License blurb goes here. */
#include <stdint.h>
#include "../list.h" /* FIXME: ../ is not very nice */
#define RS_HEADER_LEN 4
/* Data types. */
enum rs_conn_type {
RS_CONN_TYPE_NONE = 0,
RS_CONN_TYPE_UDP,
RS_CONN_TYPE_TCP,
RS_CONN_TYPE_TLS,
RS_CONN_TYPE_DTLS,
};
enum rs_cred_type {
RS_CRED_NONE = 0,
RS_CRED_TLS_PSK_RSA, /* RFC 4279. */
};
struct rs_credentials {
enum rs_cred_type type;
char *identity;
char *secret;
};
typedef void * (*rs_calloc)(size_t nmemb, size_t size);
typedef void * (*rs_malloc)(size_t size);
typedef void (*rs_free)(void *ptr);
typedef void * (*rs_realloc)(void *ptr, size_t size);
struct rs_alloc_scheme {
rs_calloc calloc;
rs_malloc malloc;
rs_free free;
rs_realloc realloc;
};
struct rs_config {
enum rs_conn_type conn_type;
struct rs_credentials transport_credentials;
struct rs_alloc_scheme alloc_scheme;
};
struct rs_attribute {
uint8_t type;
uint8_t lenght;
uint8_t *value;
};
struct rs_packet {
uint8_t code;
uint8_t id;
uint8_t auth[16];
struct list *attrs;
};
/* Local Variables: */
/* c-file-style: "stroustrup" */
/* End: */
|