]> granicus.if.org Git - apache/history - modules/lua/lua_request.c
* modules/lua/mod_lua.c (lua_post_config): Use anonymous shm segment
[apache] / modules / lua / lua_request.c
2016-01-21 Rainer JungFix typo in comment (s/patterm/pattern/).
2016-01-19 Rainer JungAdded some more log numbers to log statements that
2016-01-19 Rainer JungAdded many log numbers to log statements that
2016-01-19 Rainer JungAdded many log numbers to log statements that
2015-02-04 Eric Covenerfollowup to r1657261 whitespace only -- reindent body...
2015-02-04 Eric Covener *) SECURITY: CVE-2015-0228 (cve.mitre.org)
2015-02-04 Eric CovenerFix bit-shifting of websockets frame fields that would...
2014-11-25 Daniel Grunomod_lua: Initial attempt at passing on the configuratio...
2014-07-22 Rainer JungSwitch from lua_objlen() to Lua 5.2 preferred
2014-07-20 Christophe JailletAdd missing APLOGNO.
2014-07-18 Daniel Grunomod_lua: Don't quote values in cookies; Make IE happy...
2014-07-14 Joe OrtonSECURITY (CVE-2014-0226): Fix a race condition in score...
2014-04-21 Jeff Trawickback to c89
2014-04-20 Daniel Grunomod_lua: stop complaining
2014-04-20 Daniel Grunomod_lua: Use binary strstr for finding endpoints of...
2014-03-28 Daniel Grunomod_lua: Redesign the table construction/access mechani...
2014-03-27 Daniel Grunomod_lua: escape key/value pairs when setting cookies...
2014-02-27 Daniel Grunothis wasn't supposed to be a pointer, thanks Yann!
2014-02-27 Daniel GrunoRemove bad line that snuck into the commit
2014-02-27 Daniel Grunomod_lua: Only read up to whatever the user defines...
2014-02-20 Daniel Grunomod_lua: Add r:wspeek for checking if data is available...
2014-02-20 Daniel Grunomod_lua: Slight null-check fix on setcookie.
2014-02-11 Daniel Grunouse err_headers_out for setting cookies instead of...
2014-02-11 Daniel Grunomod_lua: Upgrade r:setcookie to accept a table of argum...
2014-02-11 Eric Covenermod_lua: Fix r:setcookie() to add, rather than replace,
2014-02-05 Daniel GrunoFix support for uploading files by using pushlstring...
2014-01-03 Daniel Grunomod_lua: Detect "All" or "None" before putting together...
2013-12-18 Eric Covenerget arpa/inet.h from apr_want.h for htons where applicable
2013-11-23 Rainer Jungmod_lua: Fix compiler warning by using correct
2013-11-16 Jeff Trawickapr_file_write_full() simplification (like r1542413...
2013-09-27 Daniel Grunomod_lua: Use a (new) global pool/mutex setup for IVM...
2013-09-18 Daniel Grunomod_lua: ap_ntoh64 endianess test
2013-09-15 Daniel Grunomod_lua: Figure out a way to read from SSL connections...
2013-09-14 Guenter KnaufUse APR type; rename var.
2013-09-14 Guenter KnaufFixed ap_ntoh64 argument.
2013-09-11 Daniel Grunomod_lua: Add rudimentary WebSocket support. This is...
2013-09-05 Daniel Grunomod_lua: init cookie as NULL.
2013-09-05 Daniel Grunoremove an unneeded variable I just added, oops.
2013-09-05 Daniel Grunomod_lua: Use ap_cookie_read for reading cookie values...
2013-09-04 Daniel GrunoAdd r:setcookie(key, val, secure, expires) and r:getcoo...
2013-07-07 Guenter KnaufFix some compiler warnings.
2013-06-21 Guenter KnaufAdded new r:touch() function.
2013-06-04 Guenter KnaufAdded new function r.date_parse_rfc() to mod_lua.
2013-06-03 Guenter KnaufFixed crash condition when r.module_info() is called
2013-06-03 Guenter KnaufAdded new functions r:mkdir(), r:mkrdir(), r:rmdir...
2013-06-02 Guenter KnaufAdded new function r:htpassword() to mod_lua.
2013-06-01 Guenter KnaufAdded optional parameter wanted to r:stat().
2013-05-31 Guenter Knaufcosmetics.
2013-05-30 Guenter KnaufRemove unneeded exports from mod_lua.
2013-05-25 Guenter KnaufWhoops - one empty line too much.
2013-05-25 Guenter KnaufRemoved a bunch of empty lines.
2013-05-25 Guenter KnaufChanged r.sleep(s) to r.usleep(ms).
2013-05-16 Guenter KnaufCast uint16 return value to int.
2013-05-16 Guenter KnaufFixed Lua type.
2013-05-16 Guenter KnaufFixed compiler warning; sorted includes.
2013-05-10 Guenter KnaufRevert part of r1476482 which disabled fractions of...
2013-05-06 Rainer Junglua header update part 1: EDOESNOTBUILD.
2013-04-28 Guenter KnaufFixed the base64 functions.
2013-04-27 Guenter KnaufAdded function to get all entries of a directory.
2013-04-27 Guenter KnaufReduce compiler warnings.
2013-04-20 Guenter KnaufFixed r.started value to return seconds.
2013-04-20 Daniel GrunoUse a mutex to control read/write for IVM values, so...
2013-04-20 Daniel Grunouse ap_varbuf instead of allocating new strings each...
2013-04-20 Daniel Grunor.started already exists as a built in variable, so...
2013-04-19 Daniel Grunoexists_config_define should return a boolean, not a...
2013-04-19 Daniel Grunoremove redundant code
2013-04-19 Daniel GrunoRemove lua_ap_banner, as it's no longer being used.
2013-04-14 Guenter KnaufOnly ask for the stat info we really use.
2013-04-14 Guenter KnaufReturn early with an error instead of returning an...
2013-04-14 Guenter KnaufWhoops, one AP_MAX_REG_MATCH not caught.
2013-04-14 Guenter KnaufDecouple mod_lua max regex matches from AP_MAX_REG_MATCH.
2013-04-13 Daniel Grunosilly me
2013-04-13 Daniel Grunofix some bugs reported by fuankg on Windows release...
2013-04-13 Daniel Grunofix up r.banner and r.port so they work like variables...
2013-04-13 Daniel Grunofix docs on regex matching, change the actual ordering...
2013-04-12 Guenter KnaufMOdified r:stat() to return finer time granularity.
2013-04-12 Guenter KnaufFixed typo; followup to r1467188.
2013-04-12 Guenter KnaufAdded optional parameter flags to lua_ap_regex().
2013-04-11 Guenter KnaufFixed Lua r:stat() time values.
2013-02-13 Daniel Grunor:regex was not returning the last captured group,...
2013-01-16 Daniel GrunoIf r:regex does not match, only return 'false', don...
2013-01-16 Daniel GrunoUsing the traditional way of declaring Lua functions...
2013-01-08 Daniel GrunoAdd database features for mod_lua (apr_dbd + mod_dbd).
2012-12-21 Daniel GrunoRemove reference to top secret project! You did not...
2012-12-20 Daniel Grunomod_lua: Fix multipart post parsing, so it doesn't...
2012-12-14 Daniel Grunomod_lua: Fix Windows compatibility issues and remove...
2012-12-14 Daniel Grunomod_lua: Fix signedness/other small bugs as per cjaille...
2012-12-11 Daniel Grunolua_request.c: Add support for parsing multipart form...
2012-12-11 Daniel Grunomod_lua/lua_request.c: Make r:write return the return...
2012-08-07 Daniel Grunomod_lua: Add r:flush, r:sendfile as well as additional...
2012-07-13 Daniel Gruno- Define LUA_COMPAT_ALL so mod_lua will be compatible...
2012-06-20 Daniel GrunoAdd the missing parsebody function to mod_lua, for...
2012-06-16 Stefan Fritschmod_lua: Add a few missing request_rec fields. Rename...
2012-06-16 Stefan Fritschallow tail call optimization in log methods, remove...
2012-03-14 Stefan FritschFix some typos
2011-12-14 Graham LeggettFurther clarify the naming of the entity that directly...
2011-12-02 Stefan FritschAdd lots of unique tags to error log messages
2011-11-25 Graham LeggettIntroduce a per connection "peer_ip" and a per request...
2011-11-10 Joe Orton* modules/lua/mod_lua.c (ap_lua_ssl_is_https): New...
2011-11-10 Eric Covenerexpose r:trace1-8
next