Split control-socket functions into separate file.

This commit is contained in:
Matthew Bloch
2012-05-23 00:42:14 +01:00
parent 811e4ab2cd
commit 9c26f7f36f
7 changed files with 257 additions and 238 deletions

8
control.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef __CONTROL_H
#define __CONTROL_H
void accept_control_connection(struct mode_serve_params* params, int client_fd, struct sockaddr* client_address);
void serve_open_control_socket(struct mode_serve_params* params);
#endif