summaryrefslogtreecommitdiffstats
path: root/lem/hathaway.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lem/hathaway.lua')
-rw-r--r--lem/hathaway.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/lem/hathaway.lua b/lem/hathaway.lua
index 7359865..ca43ab3 100644
--- a/lem/hathaway.lua
+++ b/lem/hathaway.lua
@@ -20,6 +20,7 @@
local format = string.format
local httpserv = require 'lem.http.server'
+local httpresp = require 'lem.http.response'
local M = {}
@@ -112,7 +113,7 @@ do
if handler then
handler(req, res, ok, ...)
else
- httpserv.method_not_allowed(req, res)
+ httpresp.method_not_allowed(req, res)
end
return true
end
@@ -126,7 +127,7 @@ do
if handler then
handler(req, res)
else
- httpserv.method_not_allowed(req, res)
+ httpresp.method_not_allowed(req, res)
end
else
local i = 0
@@ -134,7 +135,7 @@ do
i = i + 1
local entry = lookup[i]
if not entry then
- httpserv.not_found(req, res)
+ httpresp.not_found(req, res)
break
end
until check_match(entry, req, res, path:match(entry[1]))