1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

changes headers_in and headers_out handling in mod_lua to map apr_table_t instances as boxed pointers

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@737293 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brian McCallister
2009-01-24 03:10:40 +00:00
parent bdb54f2aeb
commit 0f4cf6e591
4 changed files with 34 additions and 28 deletions

View File

@@ -0,0 +1,6 @@
function handle(r)
local host = r.headers_in['host']
r:debug(host)
r:puts(host)
r.headers_out['wombat'] = 'lua'
end