0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-03 07:31:54 +00:00

Merge commit '9ffea830' into thread-next

This commit is contained in:
Maria Matejka 2023-10-29 00:51:34 +02:00
commit cc6a233c7f
2 changed files with 5 additions and 5 deletions

View File

@ -51,11 +51,6 @@
#include "lib/string.h" #include "lib/string.h"
#include "lib/hash.h" #include "lib/hash.h"
struct keyword {
byte *name;
int value;
};
#include "conf/keywords.h" #include "conf/keywords.h"
/* Could be defined by Bison in cf-parse.tab.h, inteferes with SYM hash */ /* Could be defined by Bison in cf-parse.tab.h, inteferes with SYM hash */

View File

@ -114,6 +114,11 @@ void cfg_copy_list(list *dest, list *src, unsigned node_size);
extern int (*cf_read_hook)(byte *buf, uint max, int fd); extern int (*cf_read_hook)(byte *buf, uint max, int fd);
struct keyword {
byte *name;
int value;
};
struct symbol { struct symbol {
node n; /* In list of symbols in config */ node n; /* In list of symbols in config */
struct symbol *next; struct symbol *next;