I want to know if this is possible, I have lighthttpd server running on my setup.
The client side is a telnet client
I perform a
telnet <ipaddr> 80
CONNECT cgi/system HTTP/1.1
Host: foobar
Connection: Keep-alive
The "system" cgi binary needs a interactive streaming session with the client.
THe problem is the cgi binary is not able to read anything from stdin.
I guess lighttpd is closing the connection..
The CGI executable, sends
HTTP/1.1 200 Connection-established
and then starts to read on the stdin, but fails looks like lighttpd has already closed the connection..
My question can this be working solution, if so what am I doing working..
The client side is a telnet client
I perform a
telnet <ipaddr> 80
CONNECT cgi/system HTTP/1.1
Host: foobar
Connection: Keep-alive
The "system" cgi binary needs a interactive streaming session with the client.
THe problem is the cgi binary is not able to read anything from stdin.
I guess lighttpd is closing the connection..
The CGI executable, sends
HTTP/1.1 200 Connection-established
and then starts to read on the stdin, but fails looks like lighttpd has already closed the connection..
My question can this be working solution, if so what am I doing working..