BSD Sockets function used for receiving data from a TCP socket.
3
votes
1answer
54 views
TStringStream gets corrupted when received using (winsock's) recv?
I'm working on a fairly simple Client/Server application and have some trouble receiving a TStringStream from a client using recv provided by winsock API.
I keep getting this error: 'access violation ...
1
vote
4answers
33 views
What does Python's socket.recv() return for non-blocking sockets if no data is received until a timeout occurs?
Basically, I've read in several places that socket.recv() will return whatever it can read, or an empty string signalling that the other side has shut down (the official docs don't even mention what ...
0
votes
2answers
20 views
FD_READ: recv() returning two packets at once
I'm using winsock in my application to mantain client-server connection, and using non-blocking sockets in order to do that. But sometimes when I get FD_READ message, it appears that recv() returns ...
0
votes
4answers
55 views
Non Blocking recv() in C Sockets
I am using an infinite loop in sockets in which if it receives some data it should receive it or if it wants to send data it sends. Something like given below. I am using select. I have only one ...
0
votes
0answers
52 views
Client/Server and MPI Send/Recv
I'm trying to send messages from a server to several clients that get connected to that server.
The server is supposed to send as many messages as there are clients connecting to it but the code ...
1
vote
1answer
26 views
solaris recv infinite receiving
When you run this code, the response does not come.
Soket is a state of being connected.
So forever is in the standby state return value without not.
please help me.
...
sock = socket(PF_INET, ...
0
votes
0answers
18 views
Sending Bitmap data over winsock? Winapi
I am tring to send a screenshot of a desktop over winsock.
As such, there are four tasks:
Save bitmap to buffer
Write data across wire using a socket
Read data from wire using a socket
Load a bitmap ...
1
vote
1answer
46 views
How to cope with 320 million 272-byte UDP packets?
So, I have an incoming UDP stream composed of 272 byte packets at a data rate of about 5.12Gb/s (around 320e6 packets per second). This data is being sent by an FPGA-based custom board. The packet ...
1
vote
1answer
39 views
MPI Status FORTRAN
I have this code but I get this error.
I tried declaring status as
INTEGER :: status
but that changes the value of my rank after the MPI_SENDRECV (i.e. the rank=0 for all processors)
PROGRAM ...
3
votes
3answers
61 views
How to receive an integer arrray in C/C++ socket?
While receiving the integer array, checking the bytes of data received is needed.
For example, when receiving an integer array with length 100:
int count = 0;
int msg[100];
while(count < 100 * ...
0
votes
1answer
47 views
Get http header in basic TCP server using linux system call
I have a basic TCP server which uses linux system calls (setsockopt , bind , listen , accept , recv ).
recv command returns me the request message which is nothing but complete URL.
Is there any way I ...
0
votes
0answers
81 views
Python IRC Bot - socket.socket.recv
Imagine this code of an IRC bot in Python:
# Here the bot is connected and irc is a socket.socket with the connection
loop_counter = 0
while True:
loop_counter += 1
data = irc.recv(4096)
# ...
0
votes
3answers
83 views
blocking recv() that receives no data (TCP)
I'm attempting to write a simple server using C system calls that takes unknown byte streams from unknown clients and executes specific actions depending on client input. For example, the client will ...
0
votes
1answer
141 views
C++ Winsock recv() buffer junk
I'm writing a console appication in cpp that sends control commands from a file via TCP to a host machine and receives a response.
All those informations are shown on screen and logged to a file and ...
2
votes
1answer
45 views
Receiving response from server using I/O in C with sockets
I'm trying to make a simple web client using sockets. I send a GET request to a web page and want to receive an HTML file. I know I can receive using recv(), but I want to do this using a FILE. I'm ...
0
votes
1answer
48 views
MQTT recv from a publish and mqtt ping C
i've got this problem, in a test program, where i'm developing a client for MQTT, i'm subscribed on a topic, after that, i wait for "publish" message from the server to my client.
After a good recv ...
-1
votes
1answer
71 views
Basic Send() and Recv() TCP server and client C++
Still trying to understand the send() and recv() functions. Why isn't this working? Nothing prints out on the server output.(except for some Test "cout"s)
This is basically the part of the code I'm ...
0
votes
1answer
72 views
c++ winsock (winsock2) recv() skips \0 byte
I'm sending the following data from server:
31 37 38 33 00 00 00 00 00 00 00 33 34 37 78 35
74 32 71 39 37 34 79 35 74 76 38 35 67 6e 32 6d
client side using winsock2.h:
...
int recvbuflen = 32;
...
0
votes
1answer
168 views
Recv() Function Hangs After Sending HTTP GET Request in Winsock in C++
I am trying to make a program that uses HTTP in winsock, but I have run into a problem where the recv function just hangs there.
int connect()
{
WSADATA t_wsa; //WSADATA structure
WORD wVers = ...
0
votes
1answer
83 views
Close thread when waiting for data in recv
I have a server, which creates a thread for every client. This is the thread function, where my program waits for data to be send. I need somehow to close this thread if no data is send in 5 seconds. ...
0
votes
1answer
68 views
C - websocket - recv reads more than payload length
I am building a websocket server in C. Right now it is following the rfc6455 specification and I have managed to get as far as implementing a chat protocol, such that connected clients
can send ...
-2
votes
1answer
69 views
socket, data processing problems! (leak-bad thread) [closed]
i'm working on a socket project in C#(.Net). there are my codes about the problems:
(Main.cs) -Listener
public static void HandleData(IAsyncResult in_Result)
{
Client m_Client = ...
1
vote
1answer
30 views
MPI Error - What is happening?
This can be a very stupid question, but I can't see my mistake in this code... The output is wrong, rank 1 prints:
3.000000 - 3.000000 - 3.000000 - 3.000000 - 3.000000 -
3.000000 - 3.000000 - ...
1
vote
1answer
200 views
Socket programming Update: recv returning -1, error = 10053
I'm implementing a TCP/IP application on Windows 7 that loops around a socket recv() call. For small amount of data (< 5 MB) it works fine, but for large data (>20 MB), the recv fails in between.
...
0
votes
2answers
376 views
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 don't know what's wrong.
I have concurrent threads communicating with a client socket
...
0
votes
0answers
50 views
function recv(p,h) of class phy in ns2----------only for ns2 users
I am reading ns2 code and trying to understand the class Phy. https://github.com/hbatmit/ns2.35/blob/master/mac/phy.cc
Following lines are extracted from the function void Phy::recv(Packet* p, ...
0
votes
1answer
85 views
Can the recv() function receive more bytes than its internal buffer?
I am new to sockets in Linux and trying to understand how the recv() works. Tried a scenario where I couldn't find an explanation clearly. I hope somebody out there can enlighten me. Here is the ...
0
votes
0answers
67 views
nfq_create_queue():Resource temporarily unavailable
Got the error 'Resource temporarily unavailable' when I tried to create multiple nf_queues in my application. I could not find any documentation for this error.
I am trying to implement a ...
3
votes
1answer
114 views
Confusion with recv() in C, is there an underlying input buffer? Where is data coming from?
I'm just learning socket/network programming in C, and have run into a situation where the recv() function is resulting in some unexpected behaviour (unexpected to me at least).
I have a server ...
2
votes
3answers
173 views
Can `recv()` result in a buffer overflow?
I'm introducing myself to socket programming in C/C++, and am using send() and recv() to exchange data between a client and server program over TCP sockets.
Here are some relevant excerpts from my ...
1
vote
2answers
113 views
winsock recv() duplicates/missing data
I'm writing a simple server/client program to send a file from client to server.
i'm using winsock2. I'm limiting the capacity to send the data each time to 5000.
client side (send):
int iResult = ...
0
votes
0answers
76 views
winsock recv data block
I write a Tcp Client with C# and Tcp Server with C++
In TCP server side, I received data by a loop:
unsigned char* buffer = new unsigned char[BUFFERSIZE];
int pLen =0;
int recievedLen = 0;
...
1
vote
3answers
107 views
Whats the addrlen field in recvfrom() used for?
I'm using recvfrom in my program to get DGRAM data from a server I specify in src_addr. However, I'm not sure why I need to initialize and pass in addrlen.
I read the man page and I didn't really ...
0
votes
2answers
300 views
recv with non-blocking socket
I am trying to implement non-blocking for socket recv and the problem is that I got an error -1 when there in no data but I expect to get EAGAIN error.
Socket is set definitely to non-blocking ...
0
votes
1answer
196 views
recv with raw socket
I am trying to recv raw packets from socket and failed. Message is printing only while sending packets on server site. When no packets are transferred - program hungs in recv (socket in synchronous ...
0
votes
2answers
68 views
recv() fails on UDP
I’m writing a simple client-server app which for the time being will be for my own personal use. I’m using Winsock for the net communication. I have not done any networking for the last 10 years, so I ...
1
vote
3answers
64 views
How can I close TCP client during recv?
I have the following code:
s.settimeout( 300 )
while notend:
data = s.recv()
datacheck()
...
The code above is running on a thread so if the user set the notend variable to False ...
0
votes
1answer
34 views
how synchronize recv() when multithreading cpp CRT
I have a server interacting with multiple clients where the client send messages to the server and the server reads them via recv() method. The problem I getting is that Im using ...
0
votes
0answers
67 views
Unix TCP recv(), and C#
I am new to Unix, and need help with the recv() used in a TCP code.
I can see that two recv() are used to receive the response from a server, one after another with different string length (call them ...
0
votes
1answer
140 views
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.
I have a client:
client.c
#include <string.h>
#include <netdb.h>
#include ...
0
votes
1answer
132 views
Differences between libpcap packet results and bsd socket recv data using C++
I have relatively limited network programming experience and was hoping someone could help me with perhaps a n00bish question, thanks in advance for any help! :)
I have two C++ programs running ...
0
votes
1answer
70 views
Need to determine the number of bytes downloaded using Winsock and recv
I have code that uses a blocking socket to receive data via a call to recv. Everything works just fine. However there is no way to report to the user the number of bytes downloaded at any point in the ...
2
votes
1answer
556 views
Perl client socket->recv() Vs <> when server socket is invoking send multiple times
I have a perl server side socket that returns fields one by one invoking send() on the client socket.
I have no issues in reading all the fields at the client side if the code is like below:
while ...
0
votes
2answers
125 views
C++ Websocket recv 2 bytes
Helo. I'm working on a C++ Websocket library. All was ok until one strange problem appeared.
int n = 0, n_add = 0;
char *buf = (char*)malloc(BUFLEN);
char new_buffer[4096];
while ((n = ...
0
votes
1answer
180 views
Increasing client packet in kernel recv-q (confirm with netstat) and not reading packet
I don't know it is netty 3.2.7.Final bugs. The problem is that unexpectedly at client-side (using SecureChatClient), increasing packet in recv-q that received real-time messages from server-side ...
1
vote
2answers
360 views
UDP non-blocking socket on a real-time OS: sendto() and recvfrom() can return with partial message?
This is my first message here.
I'm working with a non-blocking UDP socket on a real-time OS (OnTime and VxWorks).
I have read the documentation and some forums but I have some doubts about 'atomicity' ...
0
votes
3answers
144 views
c++ posix sockets recv functionality
I have a perhaps noobish question to ask, I've looked around but haven't seen a direct answer addressing it and thought I might get a quick answer here. In a simple TCP/IP client-server select loop ...
0
votes
1answer
177 views
Delphi Indy equivalent to Python's Socket.recv?
I've this code snippet in Python:
s = socket.create_connection(('192.168.0.111', 123), timeout=2.0)
s.sendall('REQUEST,status,interface'); result = s.recv(1024)
How I can do the "s.recv(1024)" in ...
0
votes
1answer
2k views
Raw Socket Linux send/receive a packet
Have some problems in receiving packets.
I can receive and read incoming packets, but I think i do not get a handshake with any host.
I only want to send a packet to a remote computer with an open ...
1
vote
2answers
295 views
Python - converting sock.recv to string
I'm digging around with python and networking.
while True:
data = sock.recv(10240)
This is definitely listening. But it seems to need to be converted to a text string.
I've seen some people ...




