I am working on a http proxy in linux using c sockets. The io function i used is robust io introduced in Computer Systems:A Programmer's Perspective.
Now everything works fine, except when I transmit jpg or png part embedded in a web page. It is always a red cross where a picture should appear. Can someone help me or have any suggestions?
sorry for the details.I mean i am working on a http proxy.The logic is the client initiate a web page request from IE browser,the the proxy will start a DNS query and send the same request to server and send the reply to client. the receive and send reply information is very simple,
while((number = readnb(&rio,buf,n))>=0){
writen(fd,buf,number);
}
the result is if there is jpg or png in a web page,then the browser shows nothing, i typed CTRL+C to stop the proxy, the browser will show the character parts and red cross for the jpg part
curl, and compare the result with the file that lives on the server. You may notice a clue. – Celada Apr 21 '12 at 20:25