Split backend and outgoing. Rename backend -> receive, client -> send.

This commit is contained in:
Ian Gulliver
2016-02-17 17:19:57 -08:00
parent ae5b4c1ce4
commit 5671f37f8a
16 changed files with 464 additions and 429 deletions

4
outgoing.h Normal file
View File

@@ -0,0 +1,4 @@
#pragma once
typedef void (*outgoing_connection_handler)(int fd, void *);
void outgoing_new(const char *, const char *, outgoing_connection_handler, void *);