Transmission Control Protocol (TCP) is a transport layer protocol that provides a connection-oriented data stream service with guaranteed, in-order delivery.
4
votes
2answers
90 views
What could cause my packet's byte order to become partially scrambled?
I am sending packets over a TCP socket between a Linux Centos 4 machine and a Windows XP machine running Interix with Gentoo. When the packet is received by Interix, about 10% of the characters are ...
0
votes
0answers
12 views
Error when using network stream.write
First thats a part of my server code :
while (true)
{
try
{
requestCount = requestCount + 1;
NetworkStream ...
0
votes
0answers
22 views
Notify a thread that is reading from a socket
I have a thread that reads something from a socket and then create a thread that computes something. The problem is that the read function is blocant(I can't use non-blocking read). How can a read the ...
0
votes
1answer
22 views
Java libgdx(desktop/android) multiplayer game how to
I have a game called wizard wars that I have been working on. This game needs to allow 2 players to play at one time, and would need a TCP connection to communicate spell creation/destruction ect., ...
0
votes
0answers
8 views
C# Proxy Packet Sinff Without Hook
To sniff packets or make proxy in c# you will need a c++ dll thats hook the application send + recv functions or hook connect function to change the connection ip what i need is method to change ...
3
votes
0answers
55 views
Close TCP connection when owner process is already killed
I have a Windows service that - when it starts - opens some WCF services to listen on the 8000 port. It happens that this service crashes sometimes. When it does, the TCP connection is not released, ...
0
votes
4answers
4k views
WCF Service Hosted in Windows Service over net tcp
In my project I have one WCF Service which is hosted in a Windows Service. I hosted the WCF Service in Windows Service over netTCPBinding and Installed Windows Service. To access WCF service in my ...
1
vote
2answers
32 views
Android client - server never detect connection lost
My situation is the following:
Two devices, both running with Android OS,
One Devices is the server, this is running with a Service and running threads to create connections and all the normal ...
1
vote
0answers
35 views
Java: Passing port number as ByteBuffer [closed]
I'm new to TCP/IP and I have to pass an IP address and port number each as a ByteBuffer and I'm not sure what value to allocate the ByteBuffer as or how to convert the values.
I've tried the ...
0
votes
1answer
28 views
TCP header option: SACK-permitted (Selective Acknowledgments) negotiation
I'm doing a research project, which needs to split tcp connection. so I have some pecular questions, which may happen in my development. The problem is understanding of TCP SACK-permitted negotiation. ...
0
votes
2answers
18 views
Is there a list of restricted ports for mobile devices and operating systems
Firstly, thanks to everyone for help so far this community is terrific.
I'm trying to obscure a normal http soap call to a device so that it doesn't use port 80. My only reason why is that the device ...
0
votes
0answers
45 views
Java RMI, Port already in use when creating registry
I'm getting my feet wet in RMI for the first time after working in Java for a number of years, and I'm following this tutorial to get the basics down. The server code below is giving me the following ...
1
vote
1answer
23 views
How can I detect when a stream client is no longer available in PHP (eg network cable pulled out)
Is there any way (other than checking for ping responses) to detect when a client stream (I don't know if a stream would be any different from sockets) becomes unavailable (ie there is no longer any ...
0
votes
0answers
8 views
trying to set dhcp fallback address but avahi-autoipd seems to be overwriting it [migrated]
I added
timeout 10;
lease{
interface "eth0";
fixed-address 169.254.1.42;
option subnet-mask 255.255.0.0;
}
to /etc/dhcp/dhclient.conf
and this is what I get from ifconfig after doing ...
0
votes
1answer
85 views
TCP communication stops with firewall on
I am having a server client application developed in vb.net. The server app sends a file to the client app at regular intervals. It uses TCP/IP to send files.
After installing the application the ...
0
votes
0answers
33 views
Sending Data to TCP Client gets Hanged after some interval
I have a program which makes a TCP Connection with multiple clients and stores the socket connection and client id in HashMap and sends the data to client by reading the data from UDP Socket.
please ...
0
votes
2answers
52 views
Socket tcp c# how to clear input buffer?
I'm writing an application for windows phone and I need to communicate with a server and transmit data. The SERVER is written in C++ and I cannot modify it. The CLIENT is what I have to write. The ...
0
votes
0answers
14 views
Need help in designing network communication
Need an idea of network model in my course project.(sorry for bad ENG)
SYNOPSIS
I have the task to write the program for dispatcher of bus route. It needs to know current location of the all buses and ...
0
votes
0answers
7 views
TCP/IP connection lost after Windows update in .net4 client - server app
I have a .net 4 client/srever app, in which I use standard .net classes for the communication. This app works 24/24 every day.
It works great, but after every Windows update TCP connection between ...
0
votes
4answers
27 views
Are there any disadvantgaes of using a part of the datagram in UDP to receive packets sequentially?
The UDP protocol does not guarantee packets being received sequentially, but you could just use part of the datagram for a sequence number.
Compared to the guarantee of TCP, is the above solution for ...
12
votes
2answers
5k views
Does TCP send a SYN/ACK on every packet or only on the first connection?
I have a TCP server that listens for an incoming client, then sends it one packet of data every second. I was wondering, does the SYN/ACK packet only get sent on initial connection, so it looks like ...
0
votes
1answer
28 views
Getting error on rhive.env(): cant't connect to a Rserver at x.x.x.x
I run Hadoop cluster (master + 3 slaves)+Hive server and I want to use RHive over it.
I installed R environment on every computer.
Rserve was installed on every node and RHive was installed on the ...
-2
votes
1answer
36 views
c# port desktop TCP server to web app [closed]
I just started to learn c#, and wrote simple tcp client-server app. Client sends data (byte array) to server, and the server sends it to another client, that's all. Now I want to put the server on ...
3
votes
1answer
118 views
Listen on TCP and UDP on the same port
How can I get Haskell to listen for UDP and TCP on the same port?
Here is the code I have so far (based on acme-http):
listenOn portm = do ...
0
votes
1answer
41 views
Process TCP PSH
I modified the IP headers of TCP packets and directly sending them out in the netfilter NF_INET_LOCAL_OUT hook. The TCP connections can be successfully established. Unfortunately, the data packets ...
0
votes
0answers
25 views
how to send UDP packets to outside of local net in android
First of all, thanks for your time to reading this article.
I'm having trouble with socket programming. I want to send UDP/TCP packets (any of them) from android service or windows service to android ...
10
votes
9answers
5k views
Discovering public IP programatically
I'm behind a router, I need a simple command to discover my public ip (instead of googling what's my ip and clicking one the results)
Are there any standard protocols for this? I've heard about STUN ...
2
votes
1answer
72 views
Massively increased new TCP connections # in .NET 4.5 over 4.0?
I am currently testing my WPF/WCF client application in .NET 4.5 vs 4.0 with a view of finally getting 4.5 rolled out to all client machines. The WCF portion uses BasicHttpBinding/SOAP.
When ...
0
votes
1answer
17 views
Diagnosing tcp communication along a route
From my home DSL network I can no longer access a specific website (say www.example.com).
Using wireshark and other tools, I observe the following properties:
when a request is sent to the site's ...
0
votes
0answers
7 views
httprequest stream vs tcp netstream differences
I currently have an open http connection to a data feed where I read a message at a time and send to a MSMQ queue. If the data volume spikes then I am aware that I am losing data as the source cannot ...
1
vote
3answers
275 views
What is the best port for a program?
Which of the following ports is the best one to use for a program. I'm working on using a custom protocol still under development. I'm looking for one that will be accessible to virtually every host ...
1
vote
2answers
371 views
Idle tcp file descriptor after failed connect on HPUX
I have a client tcp socket (in c++) that has a loop where it retries to open a socket and connect to a server at a certain interval until it succeeds.
A bug in the program caused close not to be ...
-1
votes
0answers
18 views
Will traffic control software cause tcp packets to be dropped and how to prevent it? [closed]
I am testing client-server applications using NetLimiter which is a traffic control software. I found that, when client is receiving files from server and I use NetLimiter to set the download rate to ...
0
votes
2answers
26 views
Can two ends of a TCP connection have the same IP and port?
A TCP connection is uniquely identified by { local_IP, local_port, remote_IP, remote_port }.
Is it possible that local_IP=remoteIP and local_port=remote_port?
1
vote
1answer
22 views
Unexpected behavior of tcp server: why adding delay increases ability to service clients?
Good day everybody!
My question is about NIO based server and my situation is the following: server reads messages from 100 clients (100 client threads) which send 100 messages each. So, total ...
0
votes
1answer
34 views
vb.net server - multiple clients continually processing different information
I am looking for help with writing a server application to serve an updating text stream to clients. My requirements are as follows:
I need to be able to have a client request information on server ...
1
vote
0answers
253 views
Using ThreadPool to connect to multiple TCP servers simultaneously
Imports System.IO
Imports System.Threading
Imports System.Net.Sockets
Imports System.Text
Module Module1
<MTAThread()>
Sub Main()
Dim maxthreads As Integer = 10
...
1
vote
1answer
29 views
how to validate 2-way SSL certificates?
I need to validate client as well as server's certificate.How can I do it at TCP level and at HTTP level? for Http I use cURL client library.OpenSSL is the SSL library.This has to be done through self ...
1
vote
0answers
23 views
Connection to server returns EHOSTUNREACH for all apps after switch from 3g to wifi
I've built a small android test tcp client that connects to an Ip, sends hello world, and periodically sends a datetime.
To test this I am using netcat as a server, in the following manner:
nc -l ...
0
votes
1answer
24 views
Are there any benefits to use Websockets instead of raw TCP sockets in LAN?
Assuming there is a client-server application running in a LAN. Clients are WPF applications and the server is a Windows service. Are there any benefits to use Websockets instead of raw TCP sockets ...
8
votes
5answers
1k views
Exception from lambda expressions
Strange one that I don't still get, is this:
Say,
try
{
stateClient.Socket.BeginSend(messagePrefixed, 0, messagePrefixed.Length,
SocketFlags.None, ar => ...
0
votes
1answer
33 views
Windows kernel queuing outbound network connections
We have an application (a meta-search engine) that must make 50 - 250 outbound HTTP connections in response to a user action, frequently.
The way we do this is by creating a bunch of HttpWebRequests ...
0
votes
0answers
14 views
how does it differ; tcp Vs tcpV6
I have TCP client/server console applications. When I tested them in 2 different m/c with win XP Os, it worked fine. But when I run the server in Win7 [64 bit m/c] and client in XP [32 bit], client ...
2
votes
3answers
84 views
Is Nagle Algorithm and delayed ACK used for bulk data?
So, I was going through TCP stuff when I came across Nagle's algorithm and delayed ACKs for small sized packets (1 byte data). The reason being, avoiding to send lot of small packets on the network ...
0
votes
1answer
36 views
Sending Strings Encoded by a secret key over TCP stream BadPaddingException with Windows
I think I'm having a problem specific to the Windows operating system (windows 7) using the writeUTF() and readUTF() methods for sending encrypted strings over a TCP connection.
The client and server ...
0
votes
0answers
15 views
gst-launch doesn't work (sending audio)
I'm trying to send audio via TCP.
Server's code:
gst-launch-0.10 filesrc location="/home/user/Desktop/music.mp3" ! mpegaudioparse ! tcpserversink host=localhost port=3000
Client's code:
...
0
votes
1answer
19 views
Does TCP duplicate ACKs acknowledge the correct packet received?
As shown below, at step 7, when the receiver sends ACK (16) to the sender while the correct ACK is (18), does the sender take that as an ACK for packet(17)? If not, do we need to retransmit SEQ:17 to ...
1
vote
3answers
97 views
TCP Server Java with PHP
JAVA CODE:
import java.io.*;
import java.net.*;
class Server {
public static void main(String args[]) {
try {
ServerSocket srvr = new ServerSocket(51);
Socket skt = ...
1
vote
1answer
23 views
TCP Socket binding timeout
I have questions about the time limit for the tcp binding socket in server side.
In my survey, I found if the tcp client socket send the close message to the server, the client will enter to ...
1
vote
1answer
23 views
Java TCP socket server with PHP client?
Hey there,
I am developing an TCP socket server in Java. The client(s) must connect to a webpage (in PHP)
Well, here come's my trouble.. They can connect to the specified host, but the server can't ...


