mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-04-04 16:06:47 +02:00
Merge e8e2ff5915d95cbb534f8ee1b0f3dca546db6204 into 58c76080a0c654de906de9f554e2de45b1784929
This commit is contained in:
commit
da7c8ccf66
@ -230,6 +230,10 @@ end
|
||||
local function adjustheaders(reqt)
|
||||
-- default headers
|
||||
local host = reqt.host
|
||||
--ipv6 host address must be in []
|
||||
if host:find(":", 1, true) then
|
||||
host = "["..host.."]"
|
||||
end
|
||||
local port = tostring(reqt.port)
|
||||
if port ~= tostring(SCHEMES[reqt.scheme].port) then
|
||||
host = host .. ':' .. port end
|
||||
|
Loading…
x
Reference in New Issue
Block a user