blob: 3a717a15d83d552eac2bc3856ce321a88b1221c2 (
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
|
#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_item_t
{
struct ipdb_t *owner;
struct in6_addr addr;
int prefix_len;
};
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
|