1<testcase> 2<info> 3<keywords> 4HTTP 5HTTP GET 6CURLOPT_CONNECT_TO 7</keywords> 8</info> 9 10# 11# Server-side 12<reply> 13<data nocheck="yes"> 14HTTP/1.1 200 OK 15Date: Thu, 09 Nov 2010 14:49:00 GMT 16Content-Length: 3 17Content-Type: text/plain 18 19OK 20</data> 21</reply> 22 23# 24# Client-side 25<client> 26<server> 27http 28</server> 29 <name> 30Connect to specific host: Do not mix connections with and without a "connect to host" 31 </name> 32 33 <command> 34http://www.example.com:%HTTPPORT/2052 --resolve www.example.com:%HTTPPORT:%HOSTIP -w "%{num_connects}\n" --next --resolve -www.example.com:%HTTPPORT --connect-to ::%HOSTIP:%HTTPPORT http://www.example.com:%HTTPPORT/2052 -w "%{num_connects}\n" 35</command> 36</client> 37 38# 39# Verify data after the test has been "shot" 40<verify> 41<strip> 42^User-Agent:.* 43</strip> 44<protocol> 45GET /2052 HTTP/1.1 46Host: www.example.com:%HTTPPORT 47Accept: */* 48 49GET /2052 HTTP/1.1 50Host: www.example.com:%HTTPPORT 51Accept: */* 52 53</protocol> 54 55<stdout> 56HTTP/1.1 200 OK 57Date: Thu, 09 Nov 2010 14:49:00 GMT 58Content-Length: 3 59Content-Type: text/plain 60 61OK 621 63OK 641 65</stdout> 66 67</verify> 68</testcase> 69