Tagged Questions
0
votes
3answers
38 views
should socket be set NON-BLOCKING before it is polled by select()?
I have the memory that when we want to use select() over a socket descriptor, this socket should be set NONBLOCKING in advance.
but today, I read a source file where there seems no lines which set ...
1
vote
0answers
34 views
Lost messages with non-blocking OpenSSL in C
Context: I'm developing a client-server application that is fairly solid most of the time, despite frequent network problems, outages, broken pipes, and so on. I use non-blocking sockets, select(), ...
1
vote
1answer
38 views
c++ applcation for linux to convert ipv4 packet to ipv6 [closed]
I'm looking to develope a c/c++ application for linux that converts ipv4 packet received to ipv6 and viceversa ( losing some ipv6 only features )
step 1: how to receive all necessary info from an ...
-1
votes
0answers
18 views
Resolving local network interface address for remote host [closed]
Say, I have multiple network interfaces (or one interface with multiple ip addresses in case of windows) on local host and I would like to get local interface IP address, which will be used for ...
0
votes
2answers
34 views
Handle postthreadmessage() inside a thread which is blocking in while(1) loop or use “Event Driven Sockets”
I have a single server multiple client udp application. There is a single thread (thread#1) with a single socket (socket#1) to receive data from client#1 continuously. The task of this receiving ...
2
votes
3answers
117 views
TCP sockets: Where does incoming data go after ack(leaves tcp read buffer) but before read()/recv()?
If i have a TCP connection that transfers data at 200 KB/sec but i only read()/recv() from the socket once a second, where are those 200 KB of data stored in the meanwhile?
As much as I know, data ...
-1
votes
1answer
62 views
Blocking sockets v/s non-blocking sockets in multi-threaded single server multiple client application [closed]
I had been working on a Server Client aplication where Server is going to service(sendto + receivefrom)'x' number of Clients at a time. For this purpose, I have created 'x' number of threads on Server ...
0
votes
0answers
23 views
sctp_bindx (Solaris sctp library) always return “Invalid argument”
I am writing a SCTP test program in Solaris OS, and use Solaris native SCTP stack. The program likes this:
if ((fd = socket(AF_INET, SOCK_SEQPACKET, IPPROTO_SCTP)) < 0) {
perror("socket");
} ...
1
vote
1answer
78 views
Linux UDP max size of receive buffer
What's the maximum size of Linux UDP receive buffer? I thought it's limited only by available RAM, but when I set
5GB for rmem_max:
echo 5000000000 > /proc/sys/net/core/rmem_max
and 4GB for the ...
-3
votes
0answers
38 views
Fast data exchange
I need to make a program that reads stock market data in real time and shows it to end users. The basic chain is PC->Server->PC. This means data will first come to me on my local pc, this data will ...
1
vote
2answers
60 views
UDP buffer overflow w/o filling the receive buffer?
If I send 1000 "Hello World!" UDP messages (12 bytes + 28 IP/UDP overhead), I observe that on the receiving side I only buffer 658 (always the same number, 658*40 = 26320 bytes). I do that, by sending ...
1
vote
0answers
43 views
Winsock Connect function is taking too long when Windows firewall is on
I have made a client that, when the windows firewall is OFF on the server then it will connect instantly to the server but when the firewall is ON then it takes around 30-35 secs to connect with ...
-1
votes
0answers
36 views
Reading emails from server without javamail [closed]
I am new to java and trying to improve my programming skills . I am trying to write an pop3 client to read emails but I have a problem . when I sent the apop command server doesn't send me any ...
4
votes
1answer
117 views
Secure Login with socket
I am trying to create a secure login program by using sockets. Here's the code I wrote:
<?php
$myusername=$_POST["username"];
$mypassword=$_POST["password"];
$host="localhost";
$port=80;
...
-1
votes
1answer
40 views
C: pthread failing to listen, bind, and accept on a socket [closed]
I am trying to create a process that will listen for connections on a socket. It seems to work when I bind, listen, and wait for accepts in the main() function. But when I attempt to create a new ...
0
votes
2answers
63 views
Echo server/client message cutoff using socket send()/recv()(winsock)
The code for echo_server and echo_client is posted below. I noticed that when I type a message over a certain length in the echo_client, the server truncates the end of it and echoes back only part of ...
0
votes
3answers
70 views
C: Sending and Receiving a file over a socket
I am trying to implement a distributed p2p file sharing system where a peer can both send and download files from other peers. But, I am having some trouble downloading and saving the file to a ...
0
votes
0answers
21 views
Android to android TCP connection failed
I'm trying to make TCP connection between android phones which are in same subnet. Connection works when I use android phone as server and android emulator as client. But when I switch emulator to ...
1
vote
2answers
19 views
Are persistent sockets persistent across routers and other in between machines?
How do persistent sockets work across routers on the web.I am planning to open a persistent Flash socket between a machine and a remote machine. There may be several machines in between those. Do each ...
0
votes
0answers
42 views
Spurious wakeups on poll / select / epoll
I am using epoll (level-triggered mode) to poll a socket fd on EPOLLPRI | EPOLLIN event.
Sometimes (actually this rarely happens but it does sometimes!!) when running my program, epoll() informs me ...
0
votes
1answer
43 views
Send() using TCP is not sending the whole array
I am trying to send a char array to a server and I am not able to send the whole thing. I discovered that I am not receiving that it is sending only the first four packets.
This is the data I want ...
0
votes
1answer
36 views
server client initialization (only once) java
I have a client/server program(that use sockets) written in java. It has a multiple functions that establishing connections. For example:
public static void some_sender(byte[] x0, byte[] x1) //he is ...
1
vote
3answers
78 views
Sending data from server
I tried to send data to client using this function
protected void SendData(Socket so, string sendData)
{
byte[] data = Encoding.ASCII.GetBytes(sendData);
so.Send(data);
...
1
vote
2answers
59 views
What is the best way to keep track of connected clients on TCP?
I wrote a small demo client/server TCP sockets project based off a number of tutorials I found through stack.
Currently the the project is blocking, and I dedicate a thread to each client. This is ...
1
vote
1answer
88 views
sendto function does not use MAC address provided in struct sockaddr_ll when sending raw packets
I am trying to send an OAM ethernet frame using raw socket. I was successful in doing so.
The send function I have written is:
int send_frame(sock_info *info,char *buf,int length)
{
...
0
votes
1answer
35 views
breaking the input into chunks in socket
I'm working on socket programming and i have a task here.. I have googled about my question but i dint get any answer..
i can collect any bytes of input from stdin into a string but i have to send ...
0
votes
1answer
58 views
Multiple UDP sockets using epoll - Not able to receive data
Im trying to receive data from multiple UDP sockets using epoll. This is a test program it doesn't have exact number of sockets.( For testing purpose its set as 50.) The below program doesn't receive ...
1
vote
2answers
55 views
maximum data that can be sent through a port-socket
i have implemented a program which takes input from client, performs operation on server and writes the data to the client. ls command is what i have chosen for example.
Now my doubt is,
1) what ...
2
votes
5answers
78 views
How to reconnect the clients to server?
My server program (socket stream) is running and it accepts the clients. Due to some abnormal condition, server is getting terminated. The other side clients are waiting for server reply.
How to I ...
0
votes
2answers
90 views
How to empty socket read/write buffers in C++
I am working on this distributed computing project and I have to simulate some of the 'nodes' failing for sometime,i.e they won't be able to read or write to any of the outgoing tcp connections.One ...
0
votes
0answers
74 views
recv with flags MSG_DONTWAIT | MSG_PEEK on TCP socket
I have a TCP stream connection used to exchange messages. This is inside Linux kernel. The consumer thread keeps processing incoming messages. After consuming one message, I want to check if there are ...
2
votes
3answers
87 views
How to design Java server with NIO?
Suppose I am writing a server. The server accepts clients connections, reads requests from the network, process them and sends back the results. Suppose also that I would like to handle all that ...
0
votes
2answers
90 views
Sending int via socket from Java to C - strange results
I have a simple server written in Java, that just sends an Integer to a connected client. I have a client written in C, that connects to the server and prints out the received Integer.
My problem is ...
0
votes
2answers
38 views
Can WSAAsyncSelect() be used in server in order to ahndle multipe clients? [closed]
I have a single asynchronous socket at my server side. whenever there is something to be read or written on the socket, a window's message is generated. Right now there is only one single asynchronous ...
0
votes
1answer
38 views
How do I properly determine if my client is still connected to the server with C sockets?
I have a client connected to a server via C Berkeley sockets. I (try to) periodically check to see if the connection is still valid by calling recv() on the socket with MSG_DONTWAIT and MSG_PEEK. ...
1
vote
1answer
74 views
ws2_32.lib missing from VS2010.What to do?
I am trying to get my hands on windows socket programming.
I know that you have to #include winsock2.h
and then link with ws2_32.lib.
Problem is I do not have ws2_32.lib in my visual studio 2010 ...
2
votes
2answers
111 views
Using asynchronous sockets for server handling multiple clients
I have developed a single server multiple client udp application using multithreading. I want to switch to a single processor system now so multithreading will no more help me :(
Now I want to ...
1
vote
2answers
50 views
Blocking read from an input TCP socket
I am currently working on a project for a distributed systems course where we have to implement a small sensor network in java. The sensors send the temperature every x seconds to an admin node (that ...
0
votes
0answers
49 views
error-detection for file sent across a network - can only link to pthread and math library in c
I need to transfer a file from one host to another but the data can be corrupted in between so I need to have some error detection algorithm . So i thought I could send the md5 sum along but my ...
0
votes
1answer
37 views
Error when sending data over network?
I've made a small program that allows a user to remotely control their home computer from any computer that obviously has a internet connection, but i keep getting this error whenever i try to send a ...
0
votes
2answers
25 views
problems about socket set no_delay and keep alive
I want to set socket's opts like no_delay and keep alive.
do i need call the function setsockopt in both server side and client side or just call this function in either server side or client side?
1
vote
1answer
53 views
Can't see my running process in the netstat or lsof command?
I am trying my hands on socket programming. I've made the following file inetaddr.c and i am using Ubuntu 12.04.
The following code doesn't display my current running process on the console which it ...
5
votes
1answer
164 views
Why does the measured network latency change if I use a sleep?
I'm trying to determine the time that it takes for a machine to receive a packet, process it and give back an answer.
This machine, that I'll call 'server', runs a very simple program, which receives ...
0
votes
0answers
103 views
Creating sessions in java socket programming with one server and multiple clients
I am a novice programmer in java.
I have created a program which is similar to a chat application using socket programming.
I haven't used threads.
My question is:
Whenever a client1 wants to ...
0
votes
1answer
53 views
Binary file cannot be transferred whereas text file can be
I need to transder a file from one application to another application on the same machine. I wrote code which transfers a packet structure which has fields like:
seq no
round
data, which is an ...
0
votes
1answer
45 views
How can i connect to my friend through internet with sockets?
I've written the game on C with sockets which perfectly works on LAN, but how can i connect to my friend through internet? Our ip addr. are dynamic, but even so (i can recompile program with current ...
1
vote
2answers
95 views
How TCP/UDP demultiplexing works?
I have the following statement.
"In TCP, the receiver host uses all of source IP, source port, destination IP and destination port to direct datagram to appropriate socket. While in UDP, the ...
0
votes
2answers
33 views
Does UDP allow repacketization?
I know that for TCP you can have for example Nagle's Algorithm enabled. However, can you have something similar for UDP?
Practical Question(assume UDP socket):
If I call send() two times in a short ...
1
vote
1answer
1k views
Using a C++ TCP client socket on a specific network interface Linux/Unix
I have the following code which by default connects to interface "eth0" which is a 1G NIC, but I would like to connect using "eth5", which is a 10G NIC.
class TCPClientSocket {
protected:
int ...
51
votes
13answers
11k views
Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?
As a follow up to a recent question, I wonder why it is impossible in Java, without attempting reading/writing on a TCP socket, to detect that the socket has been gracefully closed by the peer? This ...





