14 lines
227 B
C
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
|