# HG changeset patch # User Waqas Hussain # Date 1335452833 -18000 # Node ID 4fc99f1b75702150ab683a39d58dd7a464907bc6 # Parent 4ddf3ba0c749bbbabd57549f5fcc6e1918fd1fff net.http.parser: Handle full URLs in status line. diff -r 4ddf3ba0c749 -r 4fc99f1b7570 net/http/parser.lua --- a/net/http/parser.lua Thu Apr 26 15:16:29 2012 +0100 +++ b/net/http/parser.lua Thu Apr 26 20:07:13 2012 +0500 @@ -53,7 +53,6 @@ else method, path, httpversion = line:match("^(%w+) (%S+) HTTP/(1%.[01])$"); if not method then error = true; return error_cb("invalid-status-line"); end - path = path:gsub("^//+", "/"); -- TODO parse url more end end end @@ -71,6 +70,12 @@ responseheaders = headers; }; else + -- path normalization + if path:match("^https?://") then + headers.host, path = path:match("^https?://([^/]*)(.*)"); + end + path = path:gsub("^//+", "/"); -- TODO parse url more + len = len or 0; packet = { method = method;