0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-10 19:11:54 +00:00
bird/lua/lua.h

18 lines
309 B
C
Raw Normal View History

2017-02-06 14:25:48 +00:00
#include "nest/bird.h"
#include <lua.h>
2018-01-23 14:11:08 +00:00
struct lua_filter_chunk {
size_t size;
void *chunk;
struct lua_filter_chunk *next;
};
typedef struct lua_bird_state {
int exception;
} lua_bird_state;
lua_bird_state *luaB_init(lua_State *L, struct linpool *lp);
2017-02-08 11:36:32 +00:00
void luaB_push_route(lua_State *L, rte *e);