Fix bugs and make improvements to redbean

- Abort if .init.lua fails
- Refactor redbean to use new append library
- Use first certificate if SNI routing fails
- Use function/data sections when building Lua
- Don't use self-signed auto-generated cert for client
- Add -D staging dirs to redbean lua module default path
This commit is contained in:
Justine Tunney 2021-08-06 14:12:11 -07:00
parent 55a15c204e
commit aeeb851422
26 changed files with 703 additions and 513 deletions

View file

@ -25,9 +25,9 @@
#define W sizeof(size_t)
/**
* Appends data to buffer.
* Appends formatted string to buffer.
*/
int(vappendf)(char **b, const char *f, va_list v) {
ssize_t(vappendf)(char **b, const char *f, va_list v) {
char *p;
int r, s;
va_list w;