Transmission Control Protocol (TCP) is a transport layer protocol that provides a connection-oriented data stream service with guaranteed, in-order delivery.

learn more… | top users | synonyms (1)

1
vote
1answer
21 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
44 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
34 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 ...
-2
votes
1answer
67 views

I thought TCP sent packets in order? [closed]

I am sending the following in a IRC bot: bot->message("chanserv", "op #channel"); bot->raw("KICK #channel " + this->nick(args[0]) + " :RIPIP"); sleep(2000); // even tried sleepin ...
0
votes
0answers
28 views

convert existing Android UDP (DatagramPacket) code to TCP

I have existing Android code that submits a pre-constructed packet over UDP to a hardware device... however, I now need to convert this code to work over TCP instead in order to be more reliable. ...
0
votes
0answers
43 views

Something wrong with TCP Client in C Language

i have wierd problem to send informations and the data to TCP server. My code was made with C and Objective-C. I send the information and after i send my data in same connection. TCPClient *tcp = ...
0
votes
1answer
17 views

Java Threadpool TCP Server (Port keeps changing!!)

Good Day, I was taking a look at this tutorial to do a TCP Threadpool server. http://tutorials.jenkov.com/java-multithreaded-servers/thread-pooled-server.html It works great for listening/RECEIVING ...
0
votes
2answers
41 views

http request edit for originating IP

I have an website where i wan to show a add w.r.t. city. So in my code i am taking the IP from the request object and calculate the city from MaxMind GeoIP database. Now i wan to test this. can ...
0
votes
0answers
17 views

TCP ports or UDP, Wireshark or TCPDUMP How to capture Data from a open port

TCP ports or UDP, How to capture Data from a open port I found with Netstat -a command? How would I do this with Wireshark or TCPdump? An which one would show the most data from the packets?
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 ...
0
votes
1answer
27 views

Disable tcp slow start

I am looking for disable tcp slow start mechanism for high-speed network. Currently clients send 100MB flows to random servers with non-blocking 1Gbps link. In my math, the completion time of the ...
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
33 views

Nemesis - Inject TCP packet into an existing connection

I'm running Nemesis under Windows. I have a 3rd client program connected to a server using the TCP protocol. Now I want to inject a packet into that existing connection, so it will looks like the real ...
0
votes
3answers
65 views

Simple TCP communication over Wifi too slow (seconds lag)?

I'm trying to control a robot wirelessly through an Arduino (using a X360 controller on a computer), which requires very low latency. I chose Wifi for this reason (and the fact I'll be streaming ...
-1
votes
0answers
19 views

How to monitor data sent/received by a specific application? [closed]

I have installed an application on my Windows pc and i think its been sending my personal information over the internet to some other pc or server. and this application has trust issues. i have ...
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 ...
2
votes
1answer
33 views

Mysql connection not released?

Here's the thing: I have an application server, called A, and a DB server, called B. On B(DB), when I run netstat -ntp | grep 'A's IP' | wc -l, I see over 400 TCP connections. And when I ...
1
vote
0answers
16 views

Haproxy close connections to backup hosts when primary comes back

Question Can I get haproxy to close all connections to backup hosts when a primary host becomes available after being down? Context I am using HAproxy to do failover for pubsub. The haproxy ...
0
votes
1answer
39 views

Netty 4.0 channel.id() returns negative integer?

When trying to log the channel ID for debugging purposes: @Override public void channelActive(ChannelHandlerContext ctx) throws Exception { // TODO: Investigate negative id ...
0
votes
1answer
28 views

Sending information between Android phone and PC

I want to send information from the accelerometer on my Android phone to my PC running python 3.3. I'm trying to use TCP sockets but I can't get my head around them in python. I'm using RFO Basic on ...
-1
votes
1answer
49 views

Which OSI Layer handles connection oriented and connection less service? [closed]

Would the correct answer be Transport Layer handles it(ie connection oriented through TCP and connection less through UDP)? or Should the answer to the above question be that it is the protocol ...
1
vote
0answers
33 views

[Solved]Build a tcp packet with libnet get incorrect tcp flags and window size

I followed the synflood.c in "Hacking: the art of exploitation", which build a tcp packet with libnet_build_tcp. if (libnet_build_tcp( libnet_get_prand(LIBNET_PRu16), dest_port, ...
-1
votes
0answers
22 views

how to calculate the maximum data size and amount of overhead [closed]

Suppose that a TCP entity receives a 1.5MB(Mbyte) file from application layer on a PC. Assuming that the physical network connection of the computer is Ethernet, the maximum frame size of Ethernet ...
0
votes
2answers
34 views

Python TCP - Correct way of dealing with delay so to receive all data

I got some code to receive data that looks like this: (SSL being used) sockListToCheck = self.getSocketList(self.clientSocketsWTTL) socksReady, w, e = select.select(sockListToCheck,[],[], ...
1
vote
1answer
45 views

Safely Marking Begin/End Of Packet for TCP / UDP transmission

I am writing a client/server based application that works over local network, to exchange data between client and server, I have created a very simple NetworkCommand object that is converted to byte[] ...
0
votes
1answer
29 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
1answer
44 views

Select outgoing TCP/IP port on Android

Is there way select the outgoing port that I use when connecting, for example, to a web-service? I'll be working on a Android device so ideally something Java based would be easiest.
0
votes
0answers
49 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
3answers
103 views

data passing over tcp between erlang and nodejs

I need data passing between nodejs and erlang process over tcp. Erlang process is kind of api server which receives data from nodejs process and does some processing. I thought of using json as the ...
1
vote
0answers
37 views

How to start adb server over tcp programmatically

How can i start adb server over tcp programmatically in android...with root permission i found that this command will do... setprop service.adb.tcp.port 5555 is there any way to execute this ...
-1
votes
0answers
22 views

Classify long-lived streams with tc or iptables? (traffic shaping under Linux) [closed]

I am hoping to detect TCP streams which have been running for more than one minute (or for longer than N bytes, or longer than M packets), so I can classify them as bulk traffic ("downloads") and ...
-1
votes
1answer
36 views

TCP window size if set the same gives good performance when testing using iperf - Windows & Solaris [closed]

Machine A is a solaris 5.10 HP box (oracle DB) with NIC 2 set to full duplex and 1000Mbps. Machine B is a windows server 2008 R2 SP1 HP box with NIC2 set to full duplex and 1000Mbps. Both the machines ...
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) ...
1
vote
0answers
38 views

Python 3 TCP/IP ascii command

I am trying to send an ascii command to my stepper drive (RV which is the move command). but everything that I have tried ends up with Python (I think) adding an extra character to the beginning of ...
0
votes
1answer
22 views

Template Specialization on boost handlers for the boost tcp connection example

I have a data path that follow this order: handle_connect -> setup_listen -> handle_read -> setup_listen -> handle_read -> setup_listen, and so on, looping between handle_read and setup_listen. ...
-1
votes
1answer
33 views

Is intercepting TCP/IP traffic easy if i use RC4 SSL Cipher suites? [closed]

I am having a server which supports RC4 SSL Cipher suites. I just want to know whether it is easy for a attacker to determine the contents and IP of the users who are connecting to my server?
0
votes
2answers
41 views

how to receive text directly from server in TCP/IP messaging without click a button in C#?

I have made an WPF application client for receiving text via TCP/IP messaging in C#. But i must click button2 to receive the data from server. I want to ask how to make like a chat application where ...
0
votes
1answer
27 views

How to properly implement GUI in netty chat server side

i currently trying to create a chat service using netty.I took my references from some source code and i would like to implement a simple GUI where at the server side, a button "send" has to be ...
1
vote
1answer
41 views

Should I use TCP or UDP packets to control a UAV?

Should I use TCP or UDP connection to send control commands to an Unmanned Aerial Vehicle of a PC/base station? The vehicle is small (approx. the size of a human nail) and needs continous control ...
0
votes
1answer
24 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
3answers
77 views

How can a web server handle multiple user's incoming requests at a time on a single port (80)?

How does a web server handle multiple incoming requests at the same time on a single port(80)? Example : At the same time 300k users want to see an image from www.abcdef.com which assigned IP ...
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
1answer
11 views

A server offer concurrent TCP services to multiple clients

Can anyone tell me how a server offer concurrent TCP services to multiple clients while using only a single thread? Thanks very much !!
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
1answer
25 views

Read data from a TCP Connection

I'm currently working on a project involving data transfers via TC Protocol. My OS is Windows 2008 R2 Enterprise. First of all, I have to admit that I'm quite newbie in terms of network stuff. ...
0
votes
1answer
42 views

Differences between TCP sockets and web sockets, one more time

Trying to understand as best as I can the differences between TCP socket and websocket, I've already found a lot of useful information within these questions: fundamental difference between ...
-1
votes
0answers
44 views

C# I can't modify richtextbox text [closed]

I'm learning about TCP/IP in C# and I've come across a problem. I have the following function: public void ReceivedData(int id,string n,string s, int type) { if (type==0)//if we were expecting a ...
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 ...

1 2 3 4 5 127