# HG changeset patch # User Matthew Wild # Date 1365708277 -3600 # Node ID 712dbe1a0146116916cc5d71a4f94c297575ffe4 # Parent 111953bfe76723c7de7fbeba0917f8ed90287d24 net.http: Switch from util.httpstream to net.http.parser, introduces small but backwards-incompatible API changes - see http://prosody.im/doc/developers/http diff -r 111953bfe767 -r 712dbe1a0146 net/http.lua --- a/net/http.lua Thu Apr 11 20:01:03 2013 +0100 +++ b/net/http.lua Thu Apr 11 20:24:37 2013 +0100 @@ -9,7 +9,7 @@ local socket = require "socket" local b64 = require "util.encodings".base64.encode; local url = require "socket.url" -local httpstream_new = require "util.httpstream".new; +local httpstream_new = require "net.http.parser".new; local util_http = require "util.http"; local ssl_available = pcall(require, "ssl");