summaryrefslogtreecommitdiff
path: root/accel-pptpd/ipdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'accel-pptpd/ipdb.h')
-rw-r--r--accel-pptpd/ipdb.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/accel-pptpd/ipdb.h b/accel-pptpd/ipdb.h
deleted file mode 100644
index ebf3885..0000000
--- a/accel-pptpd/ipdb.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef IPDB_H
-#define IPDB_H
-
-#include <netinet/in.h>
-
-#include "ppp.h"
-#include "list.h"
-
-struct ipdb_item_t
-{
- struct ipdb_t *owner;
- in_addr_t addr;
- in_addr_t peer_addr;
-};
-
-struct ipdb_t
-{
- struct list_head entry;
- struct ipdb_item_t *(*get)(struct ppp_t *ppp);
- void (*put)(struct ppp_t *ppp, struct ipdb_item_t *);
-};
-
-struct ipdb_item_t *ipdb_get(struct ppp_t *ppp);
-void ipdb_put(struct ppp_t *ppp, struct ipdb_item_t *);
-
-void ipdb_register(struct ipdb_t *);
-
-#endif
-