Merge branch 'master' into tcp_pool

Conflicts:
	output_http.go
	output_http_test.go
This commit is contained in:
Leonid Bugaev
2014-01-29 14:57:47 +00:00
10 changed files with 164 additions and 11 deletions
+4
View File
@@ -26,6 +26,10 @@ func (i *TestInput) EmitPOST() {
i.data <- []byte("POST /pub/WWW/ HTTP/1.1\nHost: www.w3.org\r\n\r\na=1&b=2\r\n\r\n")
}
func (i *TestInput) EmitOPTIONS() {
i.data <- []byte("OPTIONS / HTTP/1.1\nHost: www.w3.org\r\n\r\n")
}
func (i *TestInput) String() string {
return "Test Input"
}