summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rehome some logic from server.c -> serve.cDrew DeVault2020-09-264-119/+141
|
* Okay, time to quit fucking around with BUFSIZDrew DeVault2020-09-261-1/+2
|
* Turns out BUFSIZ is small sometimesDrew DeVault2020-09-261-2/+1
|
* Bump client buffer size to BUFSIZDrew DeVault2020-09-262-2/+3
|
* Log response body size in bytesDrew DeVault2020-09-262-1/+5
|
* Serve files from rootDrew DeVault2020-09-264-11/+119
|
* disconnect_client: clean up biosDrew DeVault2020-09-261-2/+3
|
* Always log server messages to stderrDrew DeVault2020-09-261-1/+1
| | | | So that you can just direct stdout to a file to get the request log.
* Parse requests and serve simple responsesDrew DeVault2020-09-263-19/+216
|
* Use O_NONBLOCK for client file descriptorsDrew DeVault2020-09-261-2/+13
|
* Implement TLS exchange with clientsDrew DeVault2020-09-247-16/+144
| | | | This probably leaves a bit to be desired tbh
* tls: move cert/key into host structureDrew DeVault2020-09-242-9/+6
| | | | | | | | We'll later want to set these on the SSL object (rather than SSL_CTX), so move these into the host struct for later access. We'll prefer to set it on the SSL object so that we can automatically use an up-to-date certificate, per ~sircmpwn/gmni#26.
* Implement TLS storeDrew DeVault2020-09-246-4/+198
| | | | Includes hands-free certificate generation and loading
* configure: add --libdirEyal Sawady2020-09-241-7/+9
|
* Log bind addresses on startupDrew DeVault2020-09-242-1/+6
|
* Add README.mdDrew DeVault2020-09-241-0/+3
|
* Generalize loggingDrew DeVault2020-09-234-28/+78
|
* Implement basic server event loopDrew DeVault2020-09-233-6/+191
|
* Generalize IPV6_V6ONLY usageDrew DeVault2020-09-232-7/+1
| | | | Some platforms other than Linux may implement this socket option.
* Initialize socketsDrew DeVault2020-09-237-1/+171
|
* config: parse listen directivesDrew DeVault2020-09-232-4/+59
|
* Initial config parserDrew DeVault2020-09-238-10/+248
|
* Vendor in some support codeDrew DeVault2020-09-239-1/+2258
|
* Initial commitDrew DeVault2020-09-236-0/+915