Commit 05e4a302 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Replaced 127.0.0.1 with %HOSTIP where possible

parent 39a416f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ http://%HOSTIP:%HTTPPORT/1
</strip>
<protocol>
GET /1 HTTP/1.1
Host: 127.0.0.1:%HTTPPORT
Host: %HOSTIP:%HTTPPORT
Accept: */*

</protocol>
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ the
</strip>
<protocol>
PUT /we/want/10 HTTP/1.1
Host: 127.0.0.1:%HTTPPORT
Host: %HOSTIP:%HTTPPORT
Accept: */*
Content-Length: 78
Expect: 100-continue
+2 −2
Original line number Diff line number Diff line
@@ -64,11 +64,11 @@ http://%HOSTIP:%HTTPPORT/want/11 -L
</strip>
<protocol>
GET /want/11 HTTP/1.1
Host: 127.0.0.1:%HTTPPORT
Host: %HOSTIP:%HTTPPORT
Accept: */*

GET /want/data/110002.txt?coolsite=yes HTTP/1.1
Host: 127.0.0.1:%HTTPPORT
Host: %HOSTIP:%HTTPPORT
Accept: */*

</protocol>
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ http://%HOSTIP:%HTTPPORT/want/12 -r 100-200
<protocol>
GET /want/12 HTTP/1.1
Range: bytes=100-200
Host: 127.0.0.1:%HTTPPORT
Host: %HOSTIP:%HTTPPORT
Accept: */*

</protocol>
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ http://%HOSTIP:%HTTPPORT/want/13 -X DELETE
</strip>
<protocol>
DELETE /want/13 HTTP/1.1
Host: 127.0.0.1:%HTTPPORT
Host: %HOSTIP:%HTTPPORT
Accept: */*

</protocol>
Loading