Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
2k views

Socket programming: problem with recv/read

EDIT: the code below has been fixed to receive and send properly AND to account for the actual bytes of messages sent annd recieved (latter thanks to EJP) Hey guys, I'm programming in C, Unix. I ...
5
votes
8answers
4k views

Passing a structure through Sockets in C

I am trying to pass whole structure from client to server or vice-versa. Let us assume my structure as follows struct temp { int a; char b; } I am using sendto and sending the address of the ...
5
votes
4answers
3k views

Call recv() on the same blocking socket from two threads

What happens if I have one socket, s, there is no data currently available on it, it is a blocking socket, and I call recv on it from two threads at once? Will one of the threads get the data? Will ...
4
votes
5answers
474 views

A more elegant way to use recv() and vector<unsigned char>

So far, I have this code sample: ... int nbytes =0; vector<unsigned char> buffer; buffer.resize(5000); nbytes = recv(socket, &buffer[0], buffer.size(),0); //since I want to use ...
3
votes
2answers
127 views

Python tcp send receive functions

In python the recv is a blocking function or not? I'm learned in the Uni C and there the was blocking and non-blocking socket. So I just wan to ask weather in python the recv function is a blocking ...
3
votes
3answers
537 views

Perl Q: socket->recv() vs. <>?

I'm trying to work through a small Perl learning project that requires reading 4 unsigned integers from a socket. I couldn't get more than 1 integer read, and after digging around I found a solution. ...
3
votes
1answer
207 views

is it safe to recv() and send() on one socket concurrently?

I remember having read somewhere that a socket can be regarded as two independent half-duplex channels. Does it mean that recv() and send() of the same socket are actually irrelevant? if so, is it ...
3
votes
4answers
392 views

Socket programming in Perl

What is the best way to receive data from a socket in Perl, when the data length is unknown? Right now, I read one character at a time in a loop, until I reach the '\0' character. Is there a better ...
3
votes
2answers
431 views

The behavior of send() and recv() in socket communication

The following is the setup: Server Client | | accept connect | | v | send msg1-> | | | v v recv ...
3
votes
5answers
3k views

If a nonblocking recv with MSG_PEEK succeeds, will a subsequent recv without MSG_PEEK also succeed?

Here's a simplified version of some code I'm working on: void stuff(int fd) { int ret1, ret2; char buffer[32]; ret1 = recv(fd, buffer, 32, MSG_PEEK | MSG_DONTWAIT); /* Error ...
2
votes
2answers
49 views

C Socket Client not recv()-ing any bytes from server

Hi I'm building a primitive browser in c which is to do a very simple task. I'm trying to get my client to simply readout the response message from a server that I request from. I'm trying to get a ...
2
votes
3answers
102 views

How should I cleanly break out of a recv loop?

I'm using the recv function in a loop to receive network data, but let's say I want to stop receiving data mid-loop. I could just break the loop, but this doesn't seem like a very clean way to stop ...
2
votes
4answers
84 views

C Windows buffer size

In windows lets say i'm using the recv function to receive data from a socket. I'm curious how big would an optimal buffer be? I could make it 1024 bytes or I could make it 51200 bytes, or bigger. I'm ...
2
votes
2answers
280 views

Receive audio file via socket

I am trying to receive a file (audio, .CAF) from a socket in C (C++ solution ok as well). I have the socket communication working, having tested it with strings. My problem is I don't know what to ...
2
votes
1answer
120 views

Does recv remove packets from pcaps buffer?

Say there are two programs running on a computer (for the sake of simplification, the only user programs running on linux) one of which calls recv(), and one of which is using pcap to detect incoming ...
2
votes
2answers
315 views

Winsock local loop-back latency

I'm using tcp sockets to provide interprocess communication between two apps on Windows XP. I chose tcp sockets for various reasons. I'm seeing an average round-trip time of 2.8 ms. That's much slower ...
2
votes
3answers
606 views

Download HTTP thru sockets (C)

Recently I started taking this guide to get myself started on downloading files from the internet. I read it and came up with the following code to download the HTTP body of a website. The only ...
2
votes
2answers
1k views

Ending “recv()” loop when all information is Read using Winsock

I am having an issue in my recv() loop for winsock. I am trying to terminate the loop when iResult==0, however, the loop only ends when the socket closes. It appears to be hanging at the very last ...
2
votes
3answers
213 views

recv returns old data

This loop is supposed to take data from a socket line by line and put it in a buffer. For some reason, when there is no new data to return, recv returns the last couple lines it got. I was able to ...
2
votes
2answers
472 views

Sockets and multithreading

I have an interesting (to me) problem... There are two threads, one for capturing data from std input and sending it through socket to server, and another one which receives data from blocking socket. ...
2
votes
2answers
613 views

C socket programming: calling recv() changes my socket file descriptor?

Hey all, I have this strange problem with recv(). I'm programming client/server where client send() a message (a structure to be exact) and server recv() it. I am also working with multiple sockets ...
2
votes
3answers
2k views

c++ Socket select and receive problem

Below is the code fragment I have issue with socket programing. Here after select call, If I do not put a sleep on line 9, on Windows XP, 1 byte is received on line 11 (instead 4 byte is sent from ...
2
votes
2answers
6k views

C++ - Detours WinSock Hooking

What I am trying to do is use the Detours library to hook into an applications WinSock2 send() and recv() functions (a packet logger). While it does work for the send() function, it does not, ...
1
vote
1answer
33 views

Python UDP recvfrom() specific address

The problem I see with this code is that although it is working, some of the information clients(players) send to this server will end up at the method 'permission' when intended to end up at ...
1
vote
1answer
44 views

Select on socket messes up with data

I'm sending some data trough the socket, but i need to set the timeout. I'm using something like fd_set rfds; struct timeval tv; int retval; /* Watch stdin (fd 0) to see when it has input. */ ...
1
vote
5answers
57 views

Do send/recv transfer data in identical chunks?

From my client: send(socket, "this is a buffer", ...); send(socket, "second buffer", ...); From my server, is recv guaranteed to end one chunk with the r from "this is a buffer" and begin another ...
1
vote
5answers
70 views

what is the TCP recv behaviour when the IP of the client machine changes?

Does the change of the IP address of a client machine, or any other modification, affect the recv() call in the client machine? In the server side no changes are made. At the client side TCP recv() ...
1
vote
2answers
72 views

winsock - recv - Network Connection Issue

In my C++ application I'm using the recv function in a loop. I want to identify a network connection issue by getting a negative value from recv function. The one thing I can see in my tests is that ...
1
vote
2answers
71 views

socket recv in thread , wrong behavior

Greeting !! I use unpv13e library in linux developed as socket server , and listen a port which will accept 3 socket clients (at most) , each client would has its own thread .... While these 3 ...
1
vote
5answers
132 views

TCP Message framing + recv() [linux]: Good conventions?

I am trying to create a p2p applications on Linux, which I want to run as efficiently as possible. The issue I have is with managing packets. As we know, there may be more than one packet in the ...
1
vote
2answers
107 views

How would you receive a file sent with 'sendfile'?

I'm trying to implement a basic file server. I have been trying to use the sendfile command found here: http://linux.die.net/man/2/sendfile I'm using TCP. I can have it send fine, but its sending in ...
1
vote
4answers
166 views

Receive TCP payloads from socket immediately (packet-by-packet) in C

How can I receive data (byte stream) from an open network socket in C on a packet-by-packet basis? I want to read data from the socket IMMEDIATELY as it arrives (as soon as the packet arrives on the ...
1
vote
2answers
93 views

Is there a way to know how much data is available in a Python socket to receive?

I have figured out that I must use ioctl. There are similar questions here: How to tell how much data is in a Socket's send buffer Determing the number of bytes ready to be recv()'d My ...
1
vote
1answer
135 views

Socket programming : why the behaviors of recv() and read() are not the same?

I use select() to receive stdin data. The code is here: #include <stdio.h> #include <unistd.h> #include <sys/time.h> #include <sys/types.h> int main() { fd_set rfds; ...
1
vote
3answers
244 views

BSD Sockets - Using send and recv

I am trying to implement a simple chat program in linux using bsd sockets. Right now I am just trying to send and receive one message to the server from a client. Whenever I run the code, recv returns ...
1
vote
2answers
323 views

How to use single port for multiple logical data streams (Winsock)?

I'm developing the client-server Winsock app (Visual C++) that should transmit the various kind of data (video stream, audio stream, service notifications, etc.) over the network. I know that the ...
1
vote
2answers
167 views

linux recv() function flag parameter?

Hi What will happen if I use "recv(sockfd, buffer, len, 0);" on a non-blocking socket? If the socket "sockfd" in closed or nothing to be read? does the recv() will block? (note: the flag in recv () is ...
1
vote
2answers
201 views

Why recv() returns '0' bytes at all for-loop iterations except the first one?

I'm writing a small networking program in C++. Among other things it has to download twitter profile pictures. I have a list (stl::vector) of URLs. And I think that my next step is to create for-loop ...
1
vote
3answers
275 views

Python: Stop the socket-receiving-process

I receive data from some device via socket-module. But after some time the device stops sending packages. Then I want to interupt the for-loop. While True doesn't work, because he receives more then ...
1
vote
1answer
145 views

poll() doesn't flag readable data

I'm trying to write a network benchmark related to the Bufferbloat project. Most of it works, but I'm having trouble reading a one-byte cancellation signal which is sent to a socket which is being ...
1
vote
1answer
66 views

Optimal Sizes of data for sends and receives in MPI

I am writing a parallel application with MPI in which the master process has data of size approximately as large as the cache(4MB on the platform I am working on) to send over to each process. As 4MB ...
1
vote
4answers
661 views

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 of specific size to the receiver. The receiver gets them and sends an ACK for ...
1
vote
1answer
654 views

UDP Token Ring in C: Socket Descriptor Changed After Call to recvfrom

To clarify: I am writing in C, using UDP sockets. This is a token ring network. A server waits for hosts to connect and then constructs the logical ring network by assigning each peer a sending ...
1
vote
2answers
374 views

HTTP keep-alive with C++ recv winsocket2

I'm Coding my own HTTP fetcher socket. I use C++ in MVC++ and winsocket2.h I was able to program the socket to connect to the required website's server and send an HTTP GET request. Now the problem ...
1
vote
1answer
720 views

EBADF while recv after epoll_wait

i've got a following problem: i have a epoll code which receives connections: while (1) { int nfds = epoll_wait(epollfd, events, 4096, -1); if (nfds == -1) { if (errno == EINTR) ...
1
vote
2answers
552 views

EAGAIN on recv()

I implented a socket client to communicate to an ip camera with RTSP over HTTP to get teh video from the camera. To stablished the communication with the camera, first i have to set an HTTP-GET ...
1
vote
3answers
868 views

recv receiving not whole data sometime

i have following issue: here is the chunk of code: void get_all_buf(int sock, std::string & inStr) { int n = 1; char c; char temp[1024*1024]; bzero(temp, sizeof(temp)); n = ...
1
vote
3answers
688 views

Handling multiple recv() calls and all possible scenarios

I am fairly new to C and writing a TCP server, and was wondering how to handle recv()'s from a client who will send commands that the server will respond to. For the sake of this question, let's just ...
1
vote
3answers
111 views

tcp message communications

hi i want to use tcp connection to send/recv messages. The question is i want to send many messages and measure the latencies. Thus, I don't want to receive after every message sent. However, if i ...
1
vote
4answers
317 views

using udp sockets and receive data problem

i am writing an application and i don t understand a point. i try to receive data from a specific client. but i in tcp socket, accept returns to you an fd number. so you can communicate over this fd ...

1 2 3