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

static LIST_HEAD(ipdb_handlers);

__export struct ipdb_item_t *ipdb_get(struct ppp_t *ppp)
{
	struct ipdb_t *ipdb;
	struct ipdb_item_t *it;

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

	return NULL;
}

void __export ipdb_put(struct ppp_t *ppp, struct ipdb_item_t *it)
{
	if (it->owner->put)
		it->owner->put(ppp, it);
}

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