diff options
Diffstat (limited to 'app/v3_c/src/include')
-rw-r--r-- | app/v3_c/src/include/tcpserver.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/v3_c/src/include/tcpserver.h b/app/v3_c/src/include/tcpserver.h new file mode 100644 index 0000000..14b6736 --- /dev/null +++ b/app/v3_c/src/include/tcpserver.h @@ -0,0 +1,10 @@ +#ifndef TCPSERVER_H +#define TCPSERVER_H + +#define LISTEN_PORT 8080 +#define LISTEN_BACKLOG 5 + +int tcpserver(); + +#endif + |