summaryrefslogtreecommitdiffstats
path: root/server/lua-privsep.h
blob: 2d27a11896d933d66098745bbf371bfb6686a268 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LUA_PRIVSEP_H
#define LUA_PRIVSEP_H

#include "conn.h"
#include <lua.h>

int call_lua(struct conn *c, const char *msg, size_t msglen);
int init_lua(struct conn *c);
void close_lua(struct conn *c);

#endif