Top "Recv" questions

BSD Sockets function used for receiving data from a TCP socket.

Help with Sending/ Receiving UDP packets - C Sockets

Ok, if you look at some of my previous questions, I've been working on getting a simple connection up and …

objective-c sockets recv sendto multicastsocket
C++ - Detours WinSock Hooking

What I am trying to do is use the Detours library to hook into an applications WinSock2 send() and recv() …

c++ winsock recv hook detours
C - "Transport endpoint is not connected" after first recv() call

I'm just starting to learn network programming in C. I did some tests, but i got stuck with an error. …

c sockets recv
Problem with recv() on a tcp connection

I am simulating TCP communication on windows in C. I have sender and a receiver communicating. The sender sends packets …

c++ windows sockets send recv
Getting number of bytes available to read in a socket

Here's my scenario. I have a TCP client that is talking to the server. Both the server and the client …

c++ sockets recv peek
EAGAIN on recv()

I implented a socket client to communicate to an ip camera with RTSP over HTTP to get teh video from …

c++ sockets connection recv
socket select ()versus non-block recv

I've seen a few write-ups comparing select() with poll() or epoll(), and I've seen many guides discussing the actual usage …

c sockets nonblocking recv posix-select
send and recv on same socket from different threads not working

I read that it should be safe from different threads concurrently, but my program has some weird behaviour and I …

c++ sockets tcp send recv
return value of recv() function in perl

I have non blocking UDP socket in perl created this way my $my_sock = IO::Socket::INET->new(LocalPort =&…

perl recv
How to correctly read data when using epoll_wait

I am trying to port to Linux an existing Windows C++ code that uses IOCP. Having decided to use epoll_…

c++ linux multithreading recv epoll