aboutsummaryrefslogtreecommitdiffstats
path: root/libglouglou/libggnet.h
blob: a27e4e1b50591a5c379fd680bdff6233f48740e1 (plain) (blame)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#ifndef _LIBGGNET_H_
#define _LIBGGNET_H_

#include <sys/types.h>
#include <netinet/in.h>

#if defined(__OpenBSD__)
#include <sys/queue.h>
#else
#include <bsd/sys/queue.h>
#endif

#define GGNET_DNSNAME_MAX 30
#define GGNET_CONN_FREEIDS_COUNT 65536 /* 2^16 as freeids are u_int16_t */

#define GGNET_MANAGE_CONNID_TRUE 1
#define GGNET_MANAGE_CONNID_FALSE 0

struct ggnet_node {
	LIST_ENTRY(ggnet_node) entry;
	struct in_addr addr;
	time_t lastseen;
	int    used;
	short  namelen;
#define GGNET_NODENAME_WAITING -1
#define GGNET_NODENAME_FAILED -2
	char   name[GGNET_DNSNAME_MAX];
	void  *usrdata;
};

enum ggnet_connstate {
	CONNSTATE_ESTABLISHED,
	CONNSTATE_TCPFIN,
	CONNSTATE_TCPFIN2
};

struct ggnet_conn {
	LIST_ENTRY(ggnet_conn) entry;
	u_int id;
	enum ggnet_connstate state;
	struct ggnet_node 	*src;
	u_int		             src_port;
	struct ggnet_node 	*dst;
	u_int                dst_port;
	u_int  proto;
	u_int  size;
	u_int  size_response;
	time_t lastseen;
	void  *usrdata;
};

struct ggnet {
	LIST_HEAD(, ggnet_conn) conn_list;
	LIST_HEAD(, ggnet_node) node_list;
	int conn_count;
	int node_count;
	u_int16_t	conn_freeids[GGNET_CONN_FREEIDS_COUNT];
	int		    conn_freeids_ptr;
	int       manage_connid;
	time_t time;
};

struct ggnet      *ggnet_new(int);
void               ggnet_free(struct ggnet *);
struct ggnet_node *ggnet_node_add(struct ggnet *, struct in_addr *);
void               ggnet_node_del(struct ggnet *, struct ggnet_node *);
struct ggnet_node *ggnet_node_find(struct ggnet *, struct in_addr *);
void               ggnet_node_update_name(struct ggnet *, struct ggnet_node *,
                                          char *, int);
void              *ggnet_node_usrdata_get(struct ggnet_node *);
void               ggnet_node_usrdata_set(struct ggnet_node *, void *);
struct ggnet_conn *ggnet_conn_add(struct ggnet *, struct in_addr *, int,
                                  struct in_addr *, int, int, int, int);
void               ggnet_conn_data(struct ggnet *, struct ggnet_conn *,
                                   int, int);
void               ggnet_conn_del(struct ggnet *, struct ggnet_conn *);
struct ggnet_conn *ggnet_conn_find(struct ggnet *, struct in_addr *, int,
                                   struct in_addr *, int, int, int *);
struct ggnet_conn *ggnet_conn_find_by_id(struct ggnet *, int);
struct ggnet_conn *ggnet_conn_find_by_node(struct ggnet *, struct ggnet_node *,
                                           struct ggnet_node *);
void              *ggnet_conn_usrdata_get(struct ggnet_conn *);
void               ggnet_conn_usrdata_set(struct ggnet_conn *, void *);
void              *ggnet_conn_src_get(struct ggnet_conn *);
void              *ggnet_conn_dst_get(struct ggnet_conn *);
void               ggnet_time_update(struct ggnet *, time_t);

#endif /* _LIBGGNET_H_ */