aboutsummaryrefslogtreecommitdiff
path: root/connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'connection.h')
-rw-r--r--connection.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/connection.h b/connection.h
deleted file mode 100644
index 4e14487..0000000
--- a/connection.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "tsocket.h"
-#include "evloop.h"
-
-#ifndef __CONNECTION_H
-#define __CONNECTION_H
-
-struct connection;
-typedef struct connection connection_t;
-
-connection_t *connection_create(struct tsocket *sock);
-void connection_destroy(struct connection *conn);
-
-event_t *connection_create_event(struct tsocket *sock);
-
-#endif