Files
cws/include/server.h
2024-11-08 18:39:38 +01:00

14 lines
227 B
C

#ifndef __SERVER_H__
#define __SERVER_H__
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#define PORT 3030
// how many pending connections the queue will hold
#define BACKLOG 10
#endif