I did a HTTP1.1 socket.It accepts requests,then keeps on sending html to user.But it can not work well for Internet Explorer(use HTTP1.1).That is,it seem to not allow to make two connections to the socket at the same time.
The header I gave back is only "HTTP/1.1 200 OK\n".
BUT,In case of sendding the header "HTTP/1.0 200 OK\n" back
taking the place of the header above,there will be no problems for IE.
Why?And how do I treat it if I want to use HTTP1.1 yet?
Thanks.