Remove deprecated maxclients and maxip from configuration struct
[MonkeyD.git] / qa / headers_case_insensitive.htt
bloba8064d3560c6246899091615cfbeda2cf3710c8f
1 ################################################################################
2 # DESCRIPTION
3 #       Test that headers are treated as case insensitive. (RFC2616 Section 4.2)        
5 # AUTHOR
6 #       Carlos Ghan <charlie.brown.uy@gmail.com>        
8 # DATE
9 #       June 29 2009
10 ################################################################################
13 INCLUDE __CONFIG
14 CLIENT
15 _REQ $HOST $PORT
16 __GET / $HTTPVER
17 __HOST: $HOST
18 __CONNECTION: close
20 _EXPECT . "HTTP/1.1 200 OK"
21 _WAIT
22 _CLOSE
24 _REQ $HOST $PORT
25 __POST / $HTTPVER
26 __HOST: $HOST
27 __CONNECTION: close
28 __CONTENT_TYPE: text/plain
29 __CONTENT_LENGTH: AUTO
31 _-This is a test entity body.
32 END