0
votes
1answer
22 views

SIP Over TCP versus SIP over UDP [ SIP: Session Initiation Protocol ]

What is the difference between SIP over UDP and SIP over TCP? What does SIP over TCP really means? It means: SIP over TCP means both SIP and underlying RTP protocol use TCP or Run SIP ...
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
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 { // ...
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
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 ...
-8
votes
0answers
29 views

Network Design Case Study and Solutions [closed]

URGENT : Hey , Can Anyone Help me with A University Campus network Design Case Study along with solutions involving bandwidth calculations and other assumptions??URGENTLY Needed .
2
votes
2answers
37 views

will a tcp program check missing packet before it passively closes a tcp connection after receiving a RST or FIN

if there is a tcp connection between A and B, A send some packets and then a TCP RST(or TCP FIN/ACK) to close the connection, let me say? PKT1, PKT2, PKT3, TCP_RST or PKT1, PKT2, PKT3, ...
0
votes
2answers
28 views

a single buffer to manage all tcp connections

imagine I have 60 tcp fds in my program. is it a good idea to consider one thread for each of tcp connections to read from them or it is tricky to maximize the os tcp buffer to read all packets from ...
-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
33 views

how to kill a tcp connection in a tcp server program if no FIN/ACK or RST received

I wrote a tcp server program(linux c) and run it on host B if host A establishes a TCP connection with host B then A shutdown without sending FIN/ACK how do I write source codes inside tcp server ...
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 ...
1
vote
0answers
19 views

JavaFX 2 updating the model from network

I am doing a application using JavaFX 2. For the graphical interface part the MVP design pattern seems to fit well with JavaFX, but I would like to have some advice on how to update the model from ...
0
votes
1answer
41 views

asio write succeeding but no information sent

I am having a problem while creating a client program that sends requests. The request are using keep alive TCP HTTP connections. When a connection is closed(due to timeout or max being hit), I try ...
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 ...
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
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
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
1answer
37 views

how to finish complete 4 steps of tcp teardown in network programming

in network programming, I wrote 2 TCP programs A and B when a tcp connection is established betweeen A and B if I want to close it, I can use the following code snippets on A: int main(){ ...... ...
0
votes
1answer
20 views

what will happen when one peer is using `send()` or `recv()` if the other peer closes its tcp connection

if there is a tcp connection between process A and B if B closes its tcp connection by shutdown(tcpfd, SHUT_RDWR); or shutdown(tcpfd, SHUT_RD); or shutdown(tcpfd, ...
0
votes
1answer
65 views

tcp connection can't be established when there is a tcp connection with state `TIME_WAIT`

I wrote a simple tcp client and server and ran them I notice that when I use ctrl+c to end the program the tcp connection be be closed but the tcp connection state is like TIME_WAIT then if I run the ...
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
1answer
118 views

TCP server with Python: How to optimized my implementation?

I would like to implement a TCP server using a Python script. The server should basically do the following task: It will be cyclically polled by a remote client, then reads certain data on its local ...
0
votes
1answer
44 views

when blocking `recv()` or `recvfrom()` returns in the case of tcp

when blocking style recv() or recvfrom() are used , as below while(1){ recv(sock_fd, buf, n, 0); // when it returns and continue to execute the next line do_something(); ..... ...
0
votes
2answers
44 views

usng libpcap to implement tcp listen()

I have a research work which requires tcp modification and I want to implement my version of TCP listen() function my idea is to use libpcap to capture all TCP SYN packet from a specific port and then ...
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
1answer
64 views

first tcp echo client cant communicate with second tcp echo client(Bad file descriptor)

My application is Multiuser Echo chat program. If a client sends message the server sends to all clients including the client from which the message originates. It is implemented in c. server forked ...
-1
votes
1answer
54 views

how to define my own tcp header options and how to make regular tcp server react to these options? [closed]

I want to build a specific proxy server and corresponding specific client program. I want to define my own tcp header options. These tcp header options are only used by the proxy server and the ...
0
votes
1answer
255 views

TCP/IP on Android

I have an android application which I want to send a simple command to my `public class ActivitymainActivity extends Activity { private TextView textview; private Button button; @Override public ...
1
vote
1answer
37 views

TCP sequence number tricks on split-TCP

I want to build such a system, there are 3 nodes, A, B and C A and B establish a TCP connection, then A tell C the ports, sequence number (seq_no)and Acknowlegement sequence number(ack_seq_no). Then C ...
1
vote
2answers
69 views

UDP vs TCP security

We are working on a game with millions of clients communicating with our servers. These games are for the most part turn-based. I am aware that UDP offers some performance advantages over TCP, but ...
0
votes
3answers
103 views

should tcp/udp data field be converted to network byte order

if machine A and machine B are communicating with each other, but they are with different host byte order then in network-programming,on the sending side, should tcp/udp data field be converted to ...
2
votes
1answer
58 views

what kind of fields in network packets should be converted to network byte order

I know the endianess on hosts and network may be different but why the byte order is important? I think there are two reasons: 1 for the router to check the ip header(likeaddresses), the routers ...
0
votes
0answers
37 views

BUG: scheduling while atomic in tcp_recvmsg

I am trying to use a kernel socket to send/receive data with a server over TCP. I have used the following APIs for the purpose - sock_create, sock_sendmsg, sock_recvmsg and sock_release. As part of ...
0
votes
1answer
90 views

why kernel sent RST to a remote TCP server after the machine receiving a SYN/ACK packet?

I use raw socket to build a tcp client program and run it on machine A and I run a regular tcp server program on machine B the raw socket-based client program first send a SYN packet and then it ...
0
votes
2answers
121 views

is it possible to get the TCP sequence number of SYN/ACK packet in TCP 3-way handshaking?

I have a tcp client program when it initiates a 3-way handshaking with a remote tcp server by sending a SYN it will receive a SYN/ACK from the server, is it possible to read the sequence number and ...
-1
votes
1answer
33 views

sent packet is different from received packet

I use raw socket to create TCP packets, with focus on the sequence number and TCP flags(SYN, ACK) I used one machine S to send a tcp ACK packet (flag ACK is set to 1) and another machine R to receive ...
0
votes
1answer
79 views

how to get the tcp header of a received packet in socket programming?

I want to get the TCP header of each received TCP packet (destined for a specific program,namely, a port) it seems not possible to use recv() or recvfrom() to get the TCP header using regular socket. ...
0
votes
2answers
73 views

Setting destination port with TCP socket

In the case where the source port and destination port of a non-blocking TCP socket are not in agreement(for a p2p application), how does one specify the destination port that the socket will ...
0
votes
1answer
25 views

Approaching TCP programming with .NET 4.0x

I need to talk to a Samsung cash register SPS 500 that understands custom TCP commands. I've never done this before and am wondering where to get started using .NET 4.x, are there 3rd party tools ...
0
votes
2answers
174 views

tcp and udp echoclient server using select

here is code snippet for tcp and udp echoclient server using select.i had done with poll and got a good clarity but when coming to select it had described in the book i.e in the below code snippet we ...
0
votes
1answer
44 views

Figure out the point (latest sent byte) after TCP disconnection

I am wondering if it is possible to figure out the last byte that a server has sent to a client using TCP connection. To put it in details, I have a client and a server, both in C++. They are ...
3
votes
1answer
216 views

golang TCPConn.SetWriteDeadline doesn't seem to work as expected

I'm trying to detect sending failures by inspecting the error returned by golang TCPConn.Write, but it's nil. I also tried using TCPConn.SetWriteDeadline without success. That's how things happen: ...
0
votes
1answer
66 views

Persistent TCP connections in terms of Mobile networks?

I have a questions regarding WebSocket communications in mobile connections. I was wondering how the long-lived TCP connections can be handled for a long time in mobility networks when the user ...
0
votes
1answer
134 views

connecting to a local network device using java

I am trying to write a java program to communicate/control a network device connected in my LAN. The network device has a web-GUI and uses TCP, I tried to establish a connection with the device using ...
0
votes
1answer
67 views

Where does server socket bind to?

In which IP this new ServerSocket(port); bind? To all public IPs and localhost? Not sure about this. If I have multiple interfaces does it bind to all?
1
vote
2answers
130 views

UDP socket programming(extracting the data, storing it in a string)

I am learning about TCP and UDP socket programming with Java, one of the books i am reading for my networking class has the following line: DatagramPacket receivedPacket = new ...
0
votes
2answers
75 views

How to solve TCP server address already in use error

I am writing a TCP concurrent server which will fork a child process to deal with every new connection. Suppose ClientA is interacting with ChildA while server is still listening on same port. In case ...

1 2 3 4 5 7