Convert to streaming sockets (#7)

* Convert to streaming sockets

* Formatting
This commit is contained in:
Stephanie Wang
2016-09-17 15:15:18 -07:00
committed by Philipp Moritz
parent 0b7d81cae6
commit ff11ee21ef
3 changed files with 39 additions and 16 deletions
+1
View File
@@ -5,6 +5,7 @@
int bind_ipc_sock(const char* socket_pathname);
int connect_ipc_sock(const char* socket_pathname);
void send_ipc_sock(int socket_fd, char* message);
int accept_client(int socket_fd);
char* recv_ipc_sock(int socket_fd);
#endif