docs, backlog adjustment
Some checks failed
Test and Deploy / test (push) Failing after 9s
Test and Deploy / docs (push) Has been skipped

This commit is contained in:
2024-07-09 12:53:03 -07:00
parent 7a82072539
commit adc2c121d7
3 changed files with 111 additions and 1 deletions

View File

@ -15,7 +15,7 @@ typedef struct Server {
void (*handler)(struct Server *s);
} Server;
#define DEFAULT_BACKLOG 10
#define DEFAULT_BACKLOG 5
Server *new_server(ServerType type, const char *port, void(handler)(Server *s));
void delete_server(Server *s);