| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Drop most of the unicode tables | Drew DeVault | 2020-10-29 | 1 | -4210/+0 |
| | | |||||
| * | Initial pass on regex routing support | Drew DeVault | 2020-10-29 | 4 | -2/+4501 |
| | | | | | | | | | | All this does is parse the regexes out of the config file. I've vendored libregexp from Bellard's quickjs project, because it's reasonably small and self-contained, and POSIX regexes don't support captures. We're eventually going to want captures for URL rewrites, so this'll do for now. | ||||
| * | Implement MIME database support | Drew DeVault | 2020-10-28 | 1 | -1/+3 |
| | | |||||
| * | Initial support for CGI scripts | Drew DeVault | 2020-10-25 | 1 | -0/+1 |
| | | |||||
| * | Initial implementation of a routing table | Drew DeVault | 2020-10-25 | 1 | -2/+21 |
| | | |||||
| * | Overhaul network I/O to be async for real | Drew DeVault | 2020-10-25 | 2 | -7/+8 |
| | | | | | | Had to totally cut off OpenSSL from the network fd because obviously OpenSSL is just going to wreck our shit | ||||
| * | Change assert to 2-param version to comply with C11. | Kevin Sangeelee | 2020-09-29 | 1 | -1/+1 |
| | | |||||
| * | Remove [:tls] email directive | Drew DeVault | 2020-09-26 | 1 | -1/+0 |
| | | |||||
| * | Free up resources throughout | Drew DeVault | 2020-09-26 | 1 | -3/+4 |
| | | |||||
| * | Implement autoindex option | Drew DeVault | 2020-09-26 | 2 | -2/+7 |
| | | |||||
| * | Rehome some logic from server.c -> serve.c | Drew DeVault | 2020-09-26 | 1 | -0/+11 |
| | | |||||
| * | Okay, time to quit fucking around with BUFSIZ | Drew DeVault | 2020-09-26 | 1 | -1/+2 |
| | | |||||
| * | Turns out BUFSIZ is small sometimes | Drew DeVault | 2020-09-26 | 1 | -2/+1 |
| | | |||||
| * | Bump client buffer size to BUFSIZ | Drew DeVault | 2020-09-26 | 1 | -1/+3 |
| | | |||||
| * | Log response body size in bytes | Drew DeVault | 2020-09-26 | 1 | -0/+1 |
| | | |||||
| * | Serve files from root | Drew DeVault | 2020-09-26 | 1 | -0/+6 |
| | | |||||
| * | Parse requests and serve simple responses | Drew DeVault | 2020-09-26 | 2 | -2/+47 |
| | | |||||
| * | Implement TLS exchange with clients | Drew DeVault | 2020-09-24 | 3 | -4/+10 |
| | | | | | This probably leaves a bit to be desired tbh | ||||
| * | tls: move cert/key into host structure | Drew DeVault | 2020-09-24 | 1 | -0/+2 |
| | | | | | | | | | 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 store | Drew DeVault | 2020-09-24 | 2 | -0/+10 |
| | | | | | Includes hands-free certificate generation and loading | ||||
| * | Generalize logging | Drew DeVault | 2020-09-23 | 1 | -0/+10 |
| | | |||||
| * | Implement basic server event loop | Drew DeVault | 2020-09-23 | 2 | -2/+11 |
| | | |||||
| * | Initialize sockets | Drew DeVault | 2020-09-23 | 2 | -0/+33 |
| | | |||||
| * | config: parse listen directives | Drew DeVault | 2020-09-23 | 1 | -1/+1 |
| | | |||||
| * | Initial config parser | Drew DeVault | 2020-09-23 | 1 | -0/+34 |
| | | |||||
| * | Vendor in some support code | Drew DeVault | 2020-09-23 | 4 | -0/+367 |
