Tagged Questions
0
votes
0answers
14 views
why TCP sends a lot of RST when I abortively close a tcp connection by setting SO_LINGER
I abortively close a tcp connection from the following lines:
setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &so_linger, sizeof(so_linger));
close(sockfd);
I use tcpdump to capture packets, and I ...
0
votes
2answers
32 views
Socket using BufferedOutputStream/BufferedInputStream receives bogus data random
I have a client/server application that sends/receives data using BufferedOutputStream / BufferedInputStream . The protocol of communication is the following:
Send part :
first byte is the action ...
0
votes
1answer
26 views
Can ZeroMQ be used to accept traditional socket requests?
I'm trying to re-write one of our old Servers using ZeroMQ, for now I have the following Server setup, (which works for Zmq requests):
using (var context = ZmqContext.Create())
using (var ...
0
votes
1answer
42 views
Unexpected value read from socket fd
Implementing a TCP server/client chat, I wanted to validate that the username of a new client doesn't exist already.
The server's code part is:
do
{
err=0;
if(write(socketFd[(int)idx], ...
0
votes
0answers
47 views
Android TCP socket in two threads
I have a problem in my Android app.
In activity (in button/seekbar handlers) I use TCP socket to write command (data) to external device. Everything is ok with this part, and device reacts ...
1
vote
1answer
36 views
Network resources for TCP connections in python [Windows]
Not sure if I have myself a problem with a python script I'm using.
Basically, it spawns threads, each creating a tcp connections.
Well the script finishes, i even check if any threads are still ...
0
votes
0answers
32 views
Android Client connect to C# Server
I am trying to make android app connects to c# app,
C# Server code:
TcpListener listener = new TcpListener(1234);
listener.Start();
Socket soc;
while (true)
{
...
2
votes
1answer
40 views
Socket Data Handling -for data packing (TCP)
I'm working on a socket project. I want to send ~4kb data with TCP. I need to ask a question in here. That is: If I send ~4kb data with TCP, may my data handler function receives this data in one more ...
0
votes
1answer
32 views
TCP socket only receiving 4344 bytes
I'm coding a C# server application which receives a large byte array from an Android client via TCP. The problem is that the Android client is sending 14952 bytes, while the C# can't receive more than ...
0
votes
2answers
28 views
C Socket client prints out a strange output
I'm trying to send a .txt file to a Linux socket client from a Linux server client (I use the loopback interface). I tried to a send a string, i.e. "OK", and everything worked fine, but when I try to ...
0
votes
1answer
15 views
Java: Reading XML file from a TCP stream without writing it to disk
I would like to send a XML file from a server to client. The XML file has been generated by the XMLEncoder class and contains some persistent objects.
The client reads the XML file by using a ...
1
vote
1answer
30 views
AsyncTask. Problems with receiving from Java Server
I want to use AsyncTask for receiving ArrayList's(in this case) from Java server. To be sure, that I received something from server I'm trying to display it with Toast.
The Code is following:
...
0
votes
1answer
30 views
How would I handle multiple sockets and send data between them in Python 2.7.3?
I am trying to create a server in Python 2.7.3 which sends data to all client connections whenever one client connection sends data to the server. For instance, if client c3 sent "Hello, world!" to ...
1
vote
1answer
63 views
recv() error C/C++ socket programming
I'm writing the CWMP client for TR-069 Server. I'm basing my client's code on this topic (there's also a source code link in the topic)
CWMP CPE (Client) implementation
I have encountered a weird ...
0
votes
1answer
53 views
How to allow TCP connections from local host only
I want to be able to get request on a specific port only from localhost (both from 127.0.0.1 and my_local_ip);
I tried the following:
int localhost = (127 << 24) + 1; // 127.0.0.1
...
0
votes
1answer
19 views
Do I need to close a socket?
After sending data over a socket with Winsock, you're supposed to close the connection like this:
closesocket(ConnectSocket);
WSACleanup();
I'm writing an API that sends data over a socket. If I ...
0
votes
1answer
46 views
Protocol for platform independent socket communication
I'm trying to understand how platform independent socket communication works, because I would like to share socket data between a Java server and some native Unix and Windows clients. Sockets are ...
0
votes
2answers
20 views
Time Gap Between Socket Calls ie. Accept() and recv/send calls
I am implementing a server in which i listen for the client to connect using the accept socket call.
After the accept happens and I receive the socket, i wait for around 10-15 seconds before making ...
1
vote
1answer
22 views
Python piping received tcp/udp pcm data from network socket into subprocess (aplay)
I can't for the life of me figure this out.. I'm trying to take data received on a network connection, and then pipe it to a subprocess, which will stream the data to my soundcard via aplay.
I've ...
0
votes
0answers
45 views
Sending audio stream over TCP, UnsupportedAudioFileException
I have succeeded with sending and reading text and images data over TCP sockets. But I am unable to sending and reading audio stream data.
sample code at server:
public class ServerAudio {
/**
...
0
votes
2answers
35 views
Connecting to myself through my public IP through TCP
I'm trying to connect to my own machine using my public IP. If I use 127.0.0.1 the connection is successful, but using the public IP results in the following error: "ConnectionRefusedError: [WinError ...
1
vote
1answer
33 views
Is it necessary to communicate (or anticipate) Python Socket TCP Buff sizes
I am working on internal phone system software for the office I work for. We are hapily using Twilio to manage our phone tree - but would like to create a better way to monitor incoming calls and ...
1
vote
0answers
27 views
Forbidden socket access attempt Exception when reading from socket from a WebMatrix 3/ASP.NET web page?
I have a WebMatrix 3 (same as ASP.NET) web page that opens a socket to a server process running on an Azure hosted Linux VM that listens on a TCP connection for clients. The Linux VM server process ...
0
votes
1answer
48 views
Java Socket request handling
I'm attempting to write a simple file transfer program using the Java Socket and ServerSocket libraries. I've used these libraries successfully once before, but in this case I seem to have a problem ...
0
votes
0answers
26 views
How to build TCP socket connection between two PC from different LAN
Here is the problem:
I'm developing a C/S application, now two PCs are in the same room and the App is running fine. I have to move one PC to another room which is in a different LAN, i got trouble ...
0
votes
1answer
30 views
Receive Image using socket programming in Python
I am trying to receive an image in python to use it in my program.
Here is the sever code:
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server_socket.bind(("127.0.0.1", 5005))
...
0
votes
0answers
53 views
Android TCP socket connection with server whose IP is dynamically assigned
Someone please help, I have two devices connected to a wifi router. One of the device is android mobile which works as a TCP client and the other device is a wifi module which works as the TCP server. ...
1
vote
0answers
17 views
Fail to connect two sockets which are bound with two public IP address in a server
I tried to setup a XSTUNT server on Linux(http://www.cis.nctu.edu.tw/~gis87577/xDreaming/XSTUNT/index.html) to do p2p traversal, but failed. I read the source code of it. I found the application ...
0
votes
1answer
29 views
Receive image in Python
The following code is for a python server that can receive a string.
import socket
TCP_IP = '127.0.0.1'
TCP_PORT = 8001
BUFFER_SIZE = 1024
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
...
0
votes
1answer
26 views
Connection loses on data-send. Server receives RST, ACK after handshake
I've got a simple TCP-server hosted on 64bit windows server 2008 r2. TCP-server just receives connection and replies to incoming data with recieved message(echo). There are about 600-700 clients who ...
0
votes
1answer
18 views
libraries/frameworks suggestions for sockets communication with android support
I gonna work on a java application wich need communication between the application (server) and android clients using sockets with TCP protocol, what framewors or libraries do you recommend me to work ...
0
votes
0answers
14 views
Socket.connect will not work
I am experimenting with designing a chat client in python. I already have one working using UDP for networking. I then tried to make a version using TCP, basing it off the TCP communication example on ...
0
votes
2answers
42 views
Windows (C# preferably) - How to find out that we are not reading data from socket fast enaugh
If I am not reading data from socket fast enough, the TCP protocol will decrease sliding windows size and sender might get blocked during sending (as discussed here what happens when I don't ...
0
votes
0answers
23 views
How to multiplex raw TCP Socket and Web Socket events under the same event loop of EventMachine in ruby?
That means I have one single Eventmachine, and some of the clients are Web socket clients who speak web socket protocol and some clients are Raw TCP sockets who don't talk in web socket protocol at ...
0
votes
1answer
24 views
NodeJS: NET socket close if non-local IP address
I'm just getting used to NodeJS so this is a very basic question, please go gentle! I'm trying to reject a connection if the IP address isn't from our local network, it will detect and run the c.close ...
0
votes
1answer
26 views
easy tcp socket no receive
Ok, I want to communicate to a python script to send data and receive an answer, but my script doesn't work. Here is the code:
Socket socket = new Socket("192.168.178.25",5005);
DataOutputStream DOS ...
0
votes
2answers
68 views
Tcp/IP socket programming in python
I am currently involved in a project where we performed some computer vision object recognition and classification using python. It is necessary to use photos taken from an Android phone (photos ...
-11
votes
0answers
78 views
Which programming language to choose for standalone application which can sync folders in client side by the server side via internet? [closed]
Hiii... i have a problem with choosing a better language. i am still a university student and i have got a task to do. this is what they gave me to do.. they want me to develop a standalone ...
0
votes
1answer
58 views
Node.js Outgoing tcp connection limit (cannot make connections more than five)
I'm building a data transfer proxy server using node.js.
It pipes client's request to swift object storage server using http(s) REST API.
It works fine for the individual request but when the ...
0
votes
0answers
41 views
Is there any example show how to monitor tcp connection by heartbeat between android client and remote server?
I am looking for a example to show how to implement a reliable way to keep monitor the tcp connection between the android app and remote server by exchange heartbeat package.
Anyone know is there any ...
0
votes
1answer
53 views
How to connect android to python?
I have an android application that captures an image and a python code that extracts some features from images. I want to connect them to each other (receive the image in python from the android ...
1
vote
1answer
48 views
Client-Server Auction system. Console mode
I'm using C# Sockets. I'm doing a auction server and client project. Console mode.
Actually I have 1 server running asynchronosly for multiple clients.
MAIN PROBLEM: When 1 auction ends, server have ...
-2
votes
0answers
42 views
How to receive and send a large image using tcp socket , java code [closed]
Because the tcp socket buffer is no larger than 64k, how can i receive and send a large image using tcp socket ,i need the code in java, thank you
0
votes
3answers
71 views
Send() message include some field in TCP socket (C Linux)
System include some clients and server. Client send message to server have 3 types of message:
Connection setup: User type command-line: remote-chat <IP addr server>: <port addr server> ...
0
votes
1answer
22 views
writing to a tcp socket
This is a pretty elementary question. I'm just starting some socket programming and I am using qt/c++. I wrote a trivial program as an exercise which connects to a socket (the localhost loopback at ...
-1
votes
0answers
30 views
Unable to send TCP packets using socket
My goal is to get two clients talking between each other using sockets. I downloaded many example projects providing multi-thread SocketStream server. My server works fine when I try to connect and ...
1
vote
1answer
54 views
Best practices for working with sockets on a .NET 4.5 based game server?
I'm working on a relatively small shooter game project in C# that has to send over map data in chunks of voxels, together with player movement data, combat data and probably other stuff in the future. ...
0
votes
1answer
19 views
Connection refused on local server from outside connection
Im using the following code on my laptop as a server:
WSADATA wsd = { 0 };
WSAStartup(MAKEWORD(2, 0), &wsd);
SOCKET s = socket(AF_INET, SOCK_STREAM, 0);
SOCKADDR_IN sin = { 0 };
sin.sin_family = ...
3
votes
1answer
101 views
File streaming encounters buffer underrun/underflow?
Background
I'm developing a progressive download media streaming server in C++ using Boost. A typical configuration is an Android rendering device running Android 4.2.2, using a stock Gallery player ...
-1
votes
1answer
77 views
loopback socket example in C
I am trying to set a loopback socket in C but nothing works. I'm trying to make a function that opens a socket with the loopback address ,send data to socket and from another function read the data ...




