summaryrefslogtreecommitdiff
path: root/server.h
blob: 1b788dd0e21ccbc4c77dc639fa6a5d9bc1fa5c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SERVER_H
#define SERVER_H

#include <stdint.h>

typedef struct server {
  int fd;
} server_t;

server_t server_create(uint32_t port);

#endif /* SERVER_H */