BSD Sockets function used for receiving data from a TCP socket.
Have some problems in receiving packets. I can receive and read incoming packets, but I think i do not get …
c sockets networking send recvI have a very annoying problem that I found several times on other forums but I can't find a proper …
sockets shutdown zero recv closesocketI'm working on writing a IRC bot in C, and have ran into a snag. In my main function, I …
c sockets recvLet's say I'm using 1024 as buffer size for my client socket: recv(1024) Let's assume the message the server wants to …
python sockets recvI am trying to implement non-blocking for socket recv and the problem is that I got an error -1 when …
c linux sockets nonblocking recvI have a main thread that waits for connection. It spawns client threads that will echo the response from the …
python multithreading sockets recvHere's a simplified version of some code I'm working on: void stuff(int fd) { int ret1, ret2; char buffer[32]; ret1 = …
sockets nonblocking recv