Tagged Questions
2
votes
0answers
25 views
Asyncronously send file over TCP connection
so I'm making an iOS app, but this is more of a general networking question.
So what I have is one phone that acts as the server and then a bunch of phones connect to the phone as the client. ...
0
votes
2answers
16 views
discovery for a network of linux devices
I have a set of identical, custom linux devices plugged into a network and assigned addresses via DHCP. These need to be able to automatically discover each other. What's the most appropriate way of ...
0
votes
2answers
75 views
Setting up a multi-client/server TCP connection in Java
I'm trying to create a multi-client/server application in Java. I'm having quite some issues because my threads seem to get entangled... Here's what I'm trying to do.
I have a Server-class that ...
1
vote
1answer
49 views
parse IP and TCP header (especially common tcp header options)of packets captured by libpcap
I want to use libpcap to capture IP packet, and the I want to parse the IP header and tcp header.
`
there are IP header and TCP header structures in <netinet/ip.h> and <netinet/tcp.h>
IP ...
0
votes
0answers
10 views
TCP SACK: Can left edge be equal to right edge in tcp sack options?
I have a packet capture where a SACK block has left edge equal to right edge.
After further analysis, I see that it is a D-SACK which is sent because it got multiple ACK segments.
I suspect it is ...
1
vote
1answer
48 views
Go package syscall conn.Read() is non-blocking and cause high CPU usage
Strangely, in my case Read() is non-blocking and caused high CPU usage.
My code:
In function main:
l, err := net.Listen("tcp", ":13798")
if err != nil {
log.Fatal(err)
}
for {
// ...
1
vote
0answers
19 views
How can I use non-http TCP protocol on port 80 for 3G
I want to run a custom TCP protocol over a 3G connection for a game. I decided to use port 80 because hey, it's open. I'm aware that some paranoid ISPs will have stateful / application level ...
-2
votes
0answers
35 views
Send multiple TCP/UDP connections to occupy the possible ports java [closed]
does anyone know how I can occupy all possible ports and to keep them alive, in the Java programming language?The picture below is what I need to create in Java. I'm not sure which way I should do ...
0
votes
0answers
18 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
1answer
10 views
TCP checksum field?
1) In TCP, does checksum is done also over the data field?
In http://www.ietf.org/rfc/rfc793.txt site, it is said that "The checksum field is the 16 bit one's complement of the one's complement sum ...
1
vote
1answer
47 views
What's the difference between Flow Control and Congestion Control in TCP?
What's the difference between Flow Control and Congestion Control in TCP? This can be broken down into two parts: 1) What is the overall purpose of Flow vs Congestion control, and 2) How is the task ...
2
votes
0answers
47 views
Spoofing a TCP Server handshake failing
I am looking to build a simple server to proxy TCP connections at the gateway of my network (none malicious intent) but the TCP handshake is failing.
Using netfilter, I have managed to change the IP ...
-1
votes
0answers
16 views
Port forwarding beginner [migrated]
i have been trying to set up port forwarding for the past 48 hours and i can't quite get it. i have used online port scanners to see what ports are open and they are saying none, not even the port i ...
-3
votes
1answer
33 views
tcp socket data out of order?
When sending data over a socket, I read that the individual messages can be fragemented, so that I receive differently sized packages then I sent. That's ok and easy to deal with.
However, I'm a bit ...
0
votes
1answer
68 views
Direct TCP/IP networking between two android devices over internet
Hey I am just a beginner at networking.
Is it possible to connect two android devices to each other using sockets over the Internet without using any intermediate dedicated server, Given that there ...
0
votes
1answer
48 views
Multithreading/IO Stream Issues in a Java TCP Chat Client
I have a (you guessed it) homework assignment in Java that has been driving me up the wall. I am making a chat client based on TCP that will eventually use Swing as a GUI, but right now I'm just ...
0
votes
2answers
24 views
Checksum in an IP based protocol
Just out of curiosity I was wondering if not having a checksum field in the application layer of the protocol is a major design issue? Or since the IP has the inbuilt checksum part in it, shouldn't it ...
0
votes
1answer
16 views
How to Connect To My Server Application which is behind a Firewall/NAT?
I'm doing a project which involves making a server which uses TCP to connect to its clients. In real-life conditions, it could be behind a firewall/nat/proxy.
So, how would I establish a connection?
...
0
votes
1answer
21 views
how to close a tcp connection if FIN/ACK doesn't get a ACK response?
in a tcp program written in Linux C
I want to close a tcp connectin
I used close(sockfd)
I notice this function will initiate a FIN/ACK packet to the other peer
but if the other peer doesn't respond ...
0
votes
3answers
51 views
How do I receive and manage multiple TCP connections on the same port?
I have a number of clients who need to connect to a server and maintain the connection for some time (around 4 hours). I don't want to specify a different connection port for each client (as there are ...
0
votes
0answers
55 views
Android tcp vs udp for video streaming
I want to transmit live video from my phone camera to multiple users RELIABLY over network and some client specific data but with BANDWIDTH efficiency
Using tcp will ensure reliability but will need ...
0
votes
1answer
34 views
Multiprocessing with Python and Arguements
related to my last post (Which somehow got marked off and closed),
I wrote some code to create a thread for a command handler for my python TCP listener. What basically happens is that I send in some ...
3
votes
2answers
82 views
Basic C Server: Connection Refused Error
I have a program that should accept a connection at port 62085 and sends back a test message. The code hangs at accept() and never returns even if the client tries to connect. Why does the server ...
0
votes
1answer
18 views
Does client also need to call close when the server closes the connection
So, imagine a situation where a client reads from the socket and read returns 0. This means an EOF or that the server has closed down the connection.
Should the client also call close on this file ...
2
votes
2answers
72 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 ...
-1
votes
1answer
48 views
How can i stop tcp/ip packet? [closed]
kind of load balancer. I need to know, is it possible to grab a packet from the NIC and then destroy it so it won't progress up the tcp/ip stack?
I want to be able to stop it so that the PC where the ...
0
votes
1answer
25 views
Virtual Circuits and Datagrams
I know virtual circuits are connection orientated and datagrams are connectionless. I also found out that VC's have very strict time requirements while datagram networks provide a elastic service.
...
-2
votes
0answers
37 views
why some peoples cann't connect to my TCP Socket Server ? [closed]
Good day
I have made a TCP relay server and it's well hosted to outside world.
Some of my friends connected to It well using the Client application, and Some was unable to connect, And when tried to ...
0
votes
0answers
30 views
Why some peoples cann't connect to my TCP Server thought it's available to outside world? [closed]
Good day
I have a strange problem with my TCP Server/client , I will explain it below in details.
While some peoples can connect to my TCP Server socket, some peoples cann't connect to it,
I have ...
0
votes
1answer
47 views
TcpClient Stream.Read ends thread unexpectedly
I have a thread which check is user online
var user = (User)userObj;
if (!IsUserOnline(user)) return;
if (!TryToConnect(user)) return;
var TCP = user.CmdTCP;
Stream stm = TCP.GetStream();
This ...
0
votes
1answer
40 views
force close TIME_WAIT connections by sending RST to dst and src?
The MySQL server had some few "Too many connections" warnings , and on the server there's a ton of unknown TIME_WAIT connection on my system like:
# netstat -npat
tcp 0 0 ...
0
votes
0answers
23 views
Presistent and non persistent connection computer networks
I have a question in presistent and non presistent network . Suppose I want to get one image from a website
If presistent
In those to I first open a TCP connection , then request the page , then ...
0
votes
0answers
17 views
In HTTP video streaming, is it possible (if so, is it normal) to have a dynamic application buffer?
With "dynamic" buffer I mean a buffer that you can change the size of.
I just read that streaming systems usually use moderate-size buffers because of wasted bandwith if the user terminates the video ...
0
votes
0answers
34 views
which TCP header options are commonly used?
there are many TCP header options that are used in tcp communications
Currently I know MSS, SACK, timestamp and window scale
are there any other TCP header options are extensively in use?
especially ...
0
votes
2answers
47 views
tcp program can't listen on port 80
I wrote a simple tcp server program and make it listen on port 80
then i notice from
netstat -tulpn|grep "tcp"
that the tcp server listening port is changed to a random port, but not 80
I tried ...
6
votes
1answer
114 views
What happens to TCP connection on 3G tower switching? [closed]
I'm randomly getting IOError: request data read error in Django's POST handler while uploading data on 3G network. The question why Django raises that particular exception has already been answered ...
3
votes
4answers
70 views
What is the minimum size of data guaranteed to be sent in a single call of send() (tcp sockets)? [duplicate]
After select returns with write fd set for a tcp socket. If I try to send data on that socket, what is the minimum guaranteed size of data to be sent at once using send api? I understand that I have ...
1
vote
3answers
142 views
how to detect tcp client connect to server in c++
I have a tcp client/server, and I want to detect connection loss in client side; because my client have multiple interfaces and at a time I connected to server with one of them, I want to know how to ...
0
votes
2answers
46 views
Transmitting data over TCP always stops at 251 transmits
I am transmitting integers over TCP I have been working at getting this to work correctly for a couple days now and I am very close. What I am doing is taking input from a USB joystick and sending the ...
0
votes
1answer
31 views
Why doesn't using UDP for video-on-demand cause cross-talk?
While reading one of the assignment questions in "Data Communication and Networking" by Behrouz Forouzan, one of the questions asked were using UDP for file-transfer have any adverse effects keeping ...
-3
votes
0answers
90 views
WiFi shows Internet Access, but no Internet [closed]
I am using Dell XPS 15 running Windows 7 and I am experiencing a WiFi problem. I am able to connect to a WiFi connection (say RCC). It Shows Internet Access but my web page is not loading. Few Days ...
0
votes
3answers
75 views
Why Should I Set a Conservative Max Byte Size on a Socket's 'recv' Method?
I am building a client using Python's socket.socket class that receives data which varies in size (usually between 500 and 5,000 bytes but it is theoretically possible for the client socket to receive ...
0
votes
2answers
44 views
Benefit of small TCP receive window?
I am trying to learn how TCP Flow Control works when I came across the concept of receive window.
My question is, why is the TCP receive window scale-able? Are there any advantages from implementing ...
1
vote
1answer
26 views
TCP Port Duplicator
I have a service that listens on a TCP port for connections, and processes the received data. I now have a need to split this data and process it on a 'live' and 'test' machine.
I want to make this ...
1
vote
2answers
54 views
What's the point of using UDP with NIO?
NIO and TCP make a great pair for many connections. Since a new connection needs to be opened for each new client, each of these clients would typically need their own thread for blocking I/O ...
1
vote
1answer
106 views
testing user-space TCP/IP stack with TUN / TAP
Is it possible to test an TCP stack using TUN / TAP interfaces ?
I'm thinking of a mechanism like this:
+--------------------------------+
| TCP Client / Server |
| socket(AF_INET, ...
0
votes
1answer
42 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 ...
2
votes
1answer
86 views
Async TCP Server - Message Framing Advice
I have an asynchronous TCP socket server in C# that I've made using the TcpListener/TcpClient wrappers for Socket. I'm pretty new to networking in general so I was unaware of how TCP treats data sent, ...
0
votes
2answers
113 views
IP Fragmentation and Reassembly
I am currently going through my networking slides and was wondering if someone could help me with the concept of fragmentation and reassembly.
I understand how it works, namely how datagrams are ...
0
votes
0answers
31 views
BPF syntax - matches certain TCP packets
I need to create a BPF filter that lets through TCP packets with certain combinations of filters, satisfying these conditions:
Has SYN flag AND FIN flag
Has FIN flag AND NOT ACK flag
Has RST flag ...

