History log of /netbsd/libexec/httpd/lua/glue.c (Results 1 – 5 of 5)
Revision Date Author Comments
# 661c4f9f 11-May-2018 sevan <sevan@NetBSD.org>

remove definition of LUA_USE_APICHECK, it is a build time option for Lua
itself. Not for modules.


# 923a1e92 04-May-2018 sevan <sevan@NetBSD.org>

Do not try and process empty requests. This resolves a crash when issuing a
carriage return to read_request() in foreground mode.
In the C daemon, a NULL check is performed on bozo_read_request in ma

Do not try and process empty requests. This resolves a crash when issuing a
carriage return to read_request() in foreground mode.
In the C daemon, a NULL check is performed on bozo_read_request in main.c
before moving on to bozo_process_request & bozo_clean_request. Here,
process_request & clean_request just return instead.

show more ...


# a3dc2dfa 01-May-2018 sevan <sevan@NetBSD.org>

Enable checking arguments for validity.
Remove disabled code.
Fix function parameters.
Add support for Lua 5.3


# 62c62cf9 27-Dec-2015 mrg <mrg@NetBSD.org>

several clean ups:

- bozostrdup() gains a request parameter, and uses it to determine
what sort of error handling is required
- bozo_strdup() dies
- size_arrays() reduced slightly, pushing error h

several clean ups:

- bozostrdup() gains a request parameter, and uses it to determine
what sort of error handling is required
- bozo_strdup() dies
- size_arrays() reduced slightly, pushing error handling into the caller
- convert to size_t for some array indices
- bozo_set_pref() and bozo_init_prefs() gain httpd parameters
- apply a bunch of manual CSE to vastly reduce the number of times the
string "request->hr_httpd" appears.
- CGI parse_header() takes a request not httpd now

XXX: lua glue updated to call bozo_init_prefs() with htttpd parameter,
but i'm only guessing here.

show more ...


# 390458fa 10-May-2010 mrg <mrg@NetBSD.org>

import bozohttpd 20100509. it has these changes:
o major rework and clean up of internal interfaces. move the main
program into main.c, the remaining parts are useable as library.
add bindin

import bozohttpd 20100509. it has these changes:
o major rework and clean up of internal interfaces. move the main
program into main.c, the remaining parts are useable as library.
add bindings for lua. by Alistair G. Crooks <agc@netbsd.org>
o fix http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566325


special thanks to al for the majority of these changes.

show more ...