Relative Content

Tag Archive for csocketsunix

Why reading the contents of a socket takes so long to finish

Context I am currently making a program in Linux that uses SSL secured IPv4 sockets. Once the sockets are created they connect to an IP and make a request socket->Connect( ip.c_str() , port ); socket->Write( request.c_str(), strlen(request.c_str()) ); After that I read the contents of the page in a loop with a buffer then I […]