summaryrefslogtreecommitdiff
path: root/accel-pppd/ipdb.c
blob: 8054e6bf3952405b9fe08d4457ae29b6d532899e (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
#include "triton.h"
#include "ipdb.h"

#include "memdebug.h"

static LIST_HEAD(ipdb_handlers);

struct ipv4db_item_t __export *ipdb_get_ipv4(struct ppp_t *ppp)
{
	struct ipdb_t *ipdb;
	struct ipv4db_item_t *it;

	list_for_each_entry(ipdb, &ipdb_handlers, entry) {
		if (!ipdb->get_ipv4)
			continue;
		it = ipdb->get_ipv4(ppp);
		if (it)
			return it;
	}

	return NULL;
}

void __export ipdb_put_ipv4(struct ppp_t *ppp, struct ipv4db_item_t *it)
{
	if (it->owner->put_ipv4)
		it->owner->put_ipv4(ppp, it);
}

struct ipv6db_item_t __export *ipdb_get_ipv6(struct ppp_t *ppp)
{
	struct ipdb_t *ipdb;
	struct ipv6db_item_t *it;

	list_for_each_entry(ipdb, &ipdb_handlers, entry) {
		if (!ipdb->get_ipv6)
			continue;
		it = ipdb->get_ipv6(ppp);
		if (it)
			return it;
	}

	return NULL;
}

void __export ipdb_put_ipv6(struct ppp_t *ppp, struct ipv6db_item_t *it)
{
	if (it->owner->put_ipv4)
		it->owner->put_ipv6(ppp, it);
}


void __export ipdb_register(struct ipdb_t *ipdb)
{
	list_add_tail(&ipdb->entry, &ipdb_handlers);
}