summaryrefslogtreecommitdiffhomepage
path: root/connection.h
blob: c7e967688f85cb90e56abee2fc131a8d700aed61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <lua.h>

struct connection
{
	int fd;
	int ref;
	lua_State * L;
	int push;
};

struct connection * connection_new(const int);
void connection_free(struct connection *);