Support incoming connection backends (push to adsbus).

This commit is contained in:
Ian Gulliver
2016-02-17 13:41:33 -08:00
parent 020174d11a
commit 7f8b92deaf
7 changed files with 154 additions and 15 deletions

4
incoming.h Normal file
View File

@@ -0,0 +1,4 @@
#pragma once
typedef void (*incoming_connection_handler)(int fd, int epoll_fd);
void incoming_new(char *, char *, int, incoming_connection_handler);