Commit Graph

157 Commits

Author SHA1 Message Date
Omar Polo
592fd62453
rewrote the main loop to use poll
We can handle up to MAX_USERS (64 by default) concurrently.

Now, given that we don’t support CGI, it’s not a big deal.  Gemini
requests are small (up to 1024 bytes), and also the replies from the
server are small (one line plus the document — if any), all over TLS
obviously. (but even there, it’s lighter than HTTP because we don’t
need to send the whole chain for the certificate — see TOFU).

Given all the above, this doesn’t really improve the performance in
the real world, but it’s nice to have.  The main use case for this is
to disallow slow clients to stop fast clients.
2020-10-07 14:41:17 +02:00
Omar Polo
d95b77a092
fmt 2020-10-07 13:56:41 +02:00
Omar Polo
67328d238c
correct the ../ removal function
was copying BEFORE and not AFTER the ../.
2020-10-03 18:25:53 +02:00
Omar Polo
4d4f0e19ac
improving style: no functional changes 2020-10-03 18:25:31 +02:00
Omar Polo
b55de91633
remame sendfile to send_file and senddir to send_dir
apparently, on some systems there is a sendfile(2), so to avoid a name
clash we rename it to send_file and send_dir.
2020-10-03 12:43:34 +02:00
Omar Polo
0d8ca45a28
explicitly require TLS 1.2 or 1.3
it's the default, but just in case (since gemini spec explicitly talks
about 1.3 as "default" and 1.2 for ease of implementation)
2020-10-03 12:24:14 +02:00
Omar Polo
3e4749f7f9
initial commit 2020-10-02 19:39:00 +02:00