summaryrefslogtreecommitdiff
path: root/lib/route.h
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2022-03-31 19:29:17 +0200
committerMaria Matejka <mq@ucw.cz>2022-05-04 15:37:41 +0200
commit0b871c170472202770691af8995766ee57920fdc (patch)
tree08c5045208a5d11838ca2735925ddf1d03d3d2c7 /lib/route.h
parent3fb70b26faca6788aa0bdf1d558414f9f777c6cd (diff)
Moved filter value union to lib
Diffstat (limited to 'lib/route.h')
-rw-r--r--lib/route.h21
1 files changed, 2 insertions, 19 deletions
diff --git a/lib/route.h b/lib/route.h
index 47355abc..8e60f749 100644
--- a/lib/route.h
+++ b/lib/route.h
@@ -10,6 +10,8 @@
#ifndef _BIRD_LIB_ROUTE_H_
#define _BIRD_LIB_ROUTE_H_
+#include "lib/type.h"
+
struct network;
struct proto;
struct cli;
@@ -163,25 +165,6 @@ const char *ea_custom_name(uint ea);
#define EA_BIT(n) ((n) << 24) /* Used in bitfield accessors */
#define EA_BIT_GET(ea) ((ea) >> 24)
-typedef struct adata {
- uint length; /* Length of data */
- byte data[0];
-} adata;
-
-extern const adata null_adata; /* adata of length 0 */
-
-static inline struct adata *
-lp_alloc_adata(struct linpool *pool, uint len)
-{
- struct adata *ad = lp_alloc(pool, sizeof(struct adata) + len);
- ad->length = len;
- return ad;
-}
-
-static inline int adata_same(const struct adata *a, const struct adata *b)
-{ return (a->length == b->length && !memcmp(a->data, b->data, a->length)); }
-
-
typedef struct ea_list {
struct ea_list *next; /* In case we have an override list */
byte flags; /* Flags: EALF_... */