1
vote
0answers
17 views

J2ME UDP slower than TCP

I'm developing a client/server based system using two GPRS modems (Siemens TC65). The application sends relatively small frames (128 bytes each) from the client to the server and vice versa. ...
0
votes
1answer
27 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 ...
0
votes
1answer
15 views

Secured communication in a real time game

I want to create a real time multiplayer game and I wonder how should I secure and identify each user. For instance imagine I have a map with 5 players in it, each player sends every 1/60 seconds his ...
4
votes
2answers
67 views

How should I implement a distributed Remote Method Invocation system in .NET?

Original Post How would I implement a distributed Remote Method Invocation system? I'm trying to create something like the following: Master Server to track individual "hosts". Hosts can ...
-2
votes
0answers
37 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 ...
-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 ...
0
votes
0answers
56 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 ...
-1
votes
0answers
25 views

Why is UDP 2-tuple?

I understand what it means to be 2-tuple, i.e. datagrams with different source IP addresses and/or source port numbers, but same dest address/port are directed to the same socket. Also I get the fact ...
0
votes
1answer
27 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. ...
0
votes
2answers
57 views

Sequence Numbers in UDP

I was asked a interesting question relating to datagrams and how they are fragmented, namely what is used to re-assemble the original datagram. I know the ID number in every fragment will be the ...
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
65 views

C++ send UDP message to node.js UDP server has unrecognizable code

My node.js UDP server's code is var PORT = 515; var HOST = '127.0.0.1'; var dgram = require('dgram'); var server = dgram.createSocket('udp4'); server.on('listening', function () { var address ...
1
vote
1answer
84 views

Creating a client and server program with python for sending TCP and UDP packets

I have to write a client and a server program with python were the user gets ask if he would like to send via TCP or UDP. The Server simply sends back the data because i want to find out how long it ...
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 ...
1
vote
2answers
55 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 ...
0
votes
1answer
33 views

How to send a small amount of data to a large amount of iPhones

What kind of protocols can I use to send data from a server (php) to iPhones? I ruled out UDP because on cellular, iPhones don't keep any ports open for outside communication (for obvious reasons). ...
1
vote
2answers
96 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 ...
-1
votes
1answer
41 views

on what protocol torrent on and how upload affects internet speed [closed]

On which protocol does torrent run it seems logical that on UDP but I'm not sure if maybe torrent uses TCP for other things that it needs,so if torrent uses UDP how does it know when connections ...
0
votes
1answer
21 views

Which header fields characterize a packet as unique?

I'm dealing with IP packets which might contain UDP or TCP payloads. If we only consider IP-level and transport-level headers, what could be a set of representative fields for one packet? That is, ...
1
vote
1answer
34 views

How do I connect to a c# chat server on ec2

I created a chat server with c#. I can run this all on localhost and the client can connect to the server. I set up an Amazon EC2 cloud service. I set up the server on there and started it. I cannot ...
0
votes
0answers
24 views

Ruby - Accept TCP & UDP on the same port?

I need to write a server in ruby that accepts both TCP and UDP connections on the same port. Can I even do this and if so, how? A simple example would be appreciated. Thanks! pachun
1
vote
2answers
157 views

difference between rpc and normal tcp/udp server client program?

so i have been searching different ways to create client and server program (using visual studios in c++) and i came across RPC (Remote Procedure Call). But i noticed that this also uses a tcp/ip or ...
0
votes
1answer
69 views

Intercept TCP and UDP traffic localhost

Is there a way to intercept TCP and UDP traffic that is inside localhost on Windows in C#? For example an app running on localhost sending messages through TCP and/or UDP on localhost... I need to ...
0
votes
1answer
61 views

Using IPSec to block all traffic except web browsing

I am using IPsec to block all protocoles traffic, and allow some ports. I want to allow Web Browsing while blocking all of the other traffic. I tried to add rule to allow the 80 port , port 53 as ...
1
vote
1answer
49 views

How can I get TCP Statistics for IPv4 and IPv6

I want to get the differents statistics for TCP/UDP IPv4 and IPv6.So, is there a windows API that can help ?
1
vote
1answer
195 views

Remote server push notification to arduino (Ethernet)

I would want to send a message from the server actively, such as using UDP/TCPIP to a client using an arduino. It is known that this is possible if the user has port forward the specific port to the ...
1
vote
2answers
70 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
1answer
62 views

How can I sync data on Android devices via LAN without knowing the IP address of either device?

People using my app should can sync there android-smartphone with other participants in a LAN using my app. All of them have dynamic IP-addresses. If Someone makes changes, it is very importand that ...
2
votes
2answers
142 views

with SIP, when to use TCP not UDP?

I know pretty the differences between UDP and TCP in general (eg. http://www.onsip.com/about-voip/sip/udp-versus-tcp-for-voip) Question is, in what circumstances would using TCP as the transport have ...
-1
votes
1answer
40 views

How much of TCP can be modified to act like UDP?

so, this is about at the limits of my technical understanding, so please be kind about any gross errors. There are lots of articles on the web about how to give UDP some of the various great features ...
0
votes
1answer
71 views

how to make a server and client run on any machine

i created a client server program in c++. but my problem is that the client can only connect to the server if the server is on a certain computer because the client must know the server's ip address ...
0
votes
0answers
180 views

converting c++ code from TCP to UDP

i had created a client server program in MFC using TCP but by doing this the server can only work on one computer because you have to tell the client the ip address to connect to ...
0
votes
0answers
47 views

Alternative to SysLog on iPhone

My apologise that this question may not be the most well constructed, I am building an app that uses TCP connections to generate dialog between a echo server. My android counterpart has recomended I ...
2
votes
1answer
55 views

Separate TCP/SSL connection for authentication while UDP for main traffic?

I am currently writing a on a small client/server software, where the server runs on PC/Mac (Java) and the client on Android. The client is sending many small packets to the server, where low latency ...
0
votes
1answer
92 views

how to determine the starting byte of IP Header and TCP header in a raw packet

I want to use libpcap to capture packets but since the length of ethernet header or 802.11 header may vary and the length of IP header may also vary, how can I determine the starting byte(pointer) of ...
0
votes
0answers
154 views

Testing IPERF. Why UDP throughput decreases in the client side when you open a TCP connection?

I am testing my Wifi network with three nodes with the same specifications (Node 24,76 and 78) *The maximum bandwidth of the wireless connection is around 12Mbps This is my scenario and results ...
0
votes
1answer
33 views

TCP or UDP for simple service

For a service which just returns a small number when queried such as 30, or 10, but would have to handle up to 5 or so requests at any instance, would TCP or UDP be a better protocol? I am leaning ...
2
votes
1answer
48 views

Reliable way to send file over internet

First of all: I'm not absolutely certain that this is the right place to ask, but I think the question fits here better then on superuser or serverfault, since it is a question from a programmer's ...
0
votes
1answer
134 views

TCP connections between Android devices [duplicate]

I am thinking of building Android apps that can communicate to each other - e.g. IM or game. As with any Java/Android, there is a suite of TCP/UDP communication library i can use. Question is this: ...
0
votes
2answers
70 views

TCP or UDP over short distances

I am hoping to create a small program to transfer data (strings, numeric data, documents, images and audio). I have read that UDP does not check if packets reach where their destination (thus it's ...
0
votes
2answers
175 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 ...
1
vote
1answer
265 views

building internet based p2p text,audio , video chatting application

I would like to implement internet based P2P text,audio, and video chatting application using c# asp.net socket programming. i'll use tcp sockets for text chatting and udp sockets for video and audio ...
0
votes
2answers
53 views

tcp server working fine but udp server showing error in php

Here is the php code <?php $hostname = "127.0.0.1"; $portno = "5060"; $sock = socket_create(AF_INET, SOCK_STREAM, 0) or die("Socket create error\n"); socket_bind($sock, $hostname, $portno) ...
0
votes
1answer
43 views

tcpdump slowed down by… its own filter?

Do long BPF filters slow down tcpdump? I replay a packet trace where all the packets have ttl=k and wait for ICMP messages back. What I've been noticing is that if I use the following filter (on ...
1
vote
1answer
67 views

what are the changes to be made in order to convert tcp progrem into udp [closed]

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<sys/types.h> #include<sys/socket.h> #include<netinet/in.h> #include<poll.h> ...
1
vote
0answers
41 views

Android - Udp Communication Over Port 40

I'm writing a client application to communicate with central device over port 40 with udp.Since i can't change central devices communication port, i'm stuck with port 40. But i'm unable to do it.I ...
0
votes
0answers
54 views

Scapy: error when recomputing checksum

Any idea what this error might be caused by? Traceback (most recent call last): File "/home/myProject/myScript.py", line 400, in aFunction packets = map(recomputeChecksumOnePkt, packets) ...
0
votes
0answers
114 views

How to Keep listening from socket even app get closed iOS

I want to communicate with a embebed device though TCP/IP, done with communication part, I used GCDAsyncUdpSocket to communicate, all gose well when app is on foreground, but I want to do same ...
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 ...
-3
votes
1answer
75 views

Why there is no “accept()” for UDP? [closed]

I am asking it from a practical sense. In TCP, accept() will give us new socket for every connect(). It allows multiple concurrent communications with only one server port. The questions is why we ...

1 2 3 4 5 8