summaryrefslogtreecommitdiff
path: root/accel-pppd/ipdb.h
blob: 69d5479228722cf8db99ce3e20c0e4f93665557b (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
#ifndef IPDB_H
#define IPDB_H

#include <netinet/in.h>

#include "ppp.h"
#include "list.h"

struct ipv4db_item_t
{
	struct ipdb_t *owner;
	in_addr_t addr;
	in_addr_t peer_addr;
};

struct ipv6db_addr_t
{
	struct list_head entry;
	struct in6_addr addr;
	int prefix_len;
};

struct ipv6db_item_t
{
	struct ipdb_t *owner;
	uint64_t intf_id;
	struct list_head addr_list;
	struct list_head route_list;
};


struct ipdb_t
{
	struct list_head entry;
	struct ipv4db_item_t *(*get_ipv4)(struct ppp_t *ppp);
	void (*put_ipv4)(struct ppp_t *ppp, struct ipv4db_item_t *);
	struct ipv6db_item_t *(*get_ipv6)(struct ppp_t *ppp);
	void (*put_ipv6)(struct ppp_t *ppp, struct ipv6db_item_t *);
};

struct ipv4db_item_t *ipdb_get_ipv4(struct ppp_t *ppp);
void ipdb_put_ipv4(struct ppp_t *ppp, struct ipv4db_item_t *);
struct ipv6db_item_t *ipdb_get_ipv6(struct ppp_t *ppp);
void ipdb_put_ipv6(struct ppp_t *ppp, struct ipv6db_item_t *);

void ipdb_register(struct ipdb_t *);

#endif