0
votes
3answers
132 views

Receiving strange characters/symbols in winsock

Im learning about Winsock and Im having a strange issue when sending and receiving a simple string. Here's my code (pure C): Client: //... //Declarations and stuff //----------- SEND SOME DATA ...
0
votes
1answer
66 views

I've decided to write a http proxy server. Is it optimal? [closed]

I've decided to make number of threads twice the number of cores. As I thought there are machines which use hyperthreading. I want to use GetLogicalProcessorInformation to return number of CPUs. Of ...
0
votes
0answers
27 views

Should I transfer GET to the appropriate client and POST to appropriate web server in proxy server?

I want to write a http proxy server in C in Visual Studio. I don't want it to be in C++. Should I read rfc1945 amd rfc2616? Can you describe very simply what should I do? I didn't read those protocols ...
1
vote
1answer
63 views

Accept call does'nt block the second time (or more than one time)?

I have the following code and I`m not sure why wont it work properly . Its a multithreaded TCP server that loops accept() calls and triggers a designated thread each time . The problem is that the ...
0
votes
2answers
862 views

How to get the ip address under Windows

all i already had a "socketfd", and i was wondering how to use it to retrieve the local ip address. under linux, i can do something like this(not exactly correct): struct ifreq ifr; ...
1
vote
3answers
2k views

recv() until a NUL byte is received?

I'm trying to receive a single packet at a time from the server, since packets are going too fast, and each is of undefined size, calling recv() with number of bytes to read will read the first packet ...
1
vote
1answer
377 views

extra newlines at end of file transported over tcp

I have two programs, recvfile.py and sendfile.cpp. They work except that I end up with a bunch of extra newline characters at the end of the new file. I don't know how the extra spaces get there. I ...