summaryrefslogtreecommitdiff
path: root/accel-pppd/ctrl/ipoe/lua.c
diff options
context:
space:
mode:
Diffstat (limited to 'accel-pppd/ctrl/ipoe/lua.c')
-rw-r--r--accel-pppd/ctrl/ipoe/lua.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/accel-pppd/ctrl/ipoe/lua.c b/accel-pppd/ctrl/ipoe/lua.c
index f078506..d5f9e95 100644
--- a/accel-pppd/ctrl/ipoe/lua.c
+++ b/accel-pppd/ctrl/ipoe/lua.c
@@ -35,6 +35,7 @@ static int packet4_agent_remote_id(lua_State *L);
static int packet4_vlan(lua_State *L);
int luaopen_lpack(lua_State *L);
+int luaopen_bit(lua_State *L);
static const struct luaL_reg packet4_lib [] = {
{"hdr", packet4_hdr},
@@ -193,6 +194,7 @@ static void init_lua()
luaL_openlibs(L);
luaopen_lpack(L);
+ luaopen_bit(L);
luaopen_packet4(L);
if (luaL_loadfile(L, conf_filename))