blob: f280993b7a1ff03dcfefa2300364e0cbaeb4034c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef _SEATD_SERVER_H
#define _SEATD_SERVER_H
#include <stdbool.h>
#include "list.h"
#include "poller.h"
struct client;
struct server {
bool running;
struct poller poller;
struct list seats;
};
int server_init(struct server *server);
void server_finish(struct server *server);
struct seat *server_get_seat(struct server *server, const char *seat_name);
int server_listen(struct server *server, const char *path);
int server_add_client(struct server *server, int fd);
#endif
|