Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
180 views

TCP Hole Punching

I'm trying to implement TCP hole punching with windows socket using mingw toolchain. I think the process is right but the hole doesn't seems to take. I used this as reference. A and B connect to the ...
3
votes
1answer
393 views

UDP Hole Punching help

I'm trying to add networking over the internet to my game, using Peer to Peer. I have already implemented a LAN only version, which uses .NET's peer to peer classes to connect within the local ...
2
votes
1answer
170 views

Trying get dynamic content hole-punched through Magento's Full Page Cache

I am using Magento Enterprise 1.10.1.1 and need to get some dynamic content on our product pages. I am inserting the current time in a block to quickly see if it is working, but can't seem to get ...
2
votes
1answer
48 views

VMs in different NATs [closed]

I want to simulate three computers, everyone behind a different NAT, in order to test hole punching. I want a server that its address is know to the other two VMs, but the two VMs to be in separate ...
2
votes
1answer
285 views

UDP NAT hole punching example [closed]

I try search in google and here but i still cant find simple C\C++ example udp hole punching algorithm. Please help if you know where i can find it. Thanks!
2
votes
2answers
185 views

Is it the right flow for TCP hole punching for p2p application:

Using stun I will get my external ip/port and NAT type. On my middle server (public ip), I will register peers external ip/ports (Now server knows peer 1's and 2's external ip/port). Exchange the ...
1
vote
1answer
29 views

UDP Hole Punching Algorithm

Can anyone give an example of a UDP Hole Punching ? Actually, I want to write a chat program with which people can chat when they know each other's IP. But both the machines will be behind a ...
1
vote
2answers
117 views

C# UDP cannot listen on a port that has already been used to send data?

I am new to UDP/networking programming, and I am trying to create a chat board via UDP. My ultimate aim is to do UDP hole-punching (something of a similar concept to Skype), so I need to listen on ...
1
vote
2answers
85 views

udp hole punch and port restricted cone NAT

I would like to understand how udp hole punching works when two hosts each behind the port restricted cone NAT establish connection. As I understood, it happens in several stages and involves three ...
1
vote
1answer
178 views

PHP and Java for UDP NAT hole punching…?

I want to use NAT hole-punching in one of my java applications, but I don't know where to start. I'd like some sample code to start off with.... (I have access to a PHP server with sockets, cURL, and ...
1
vote
1answer
41 views

Hole punching over http

How can I do the hole punching over http,like I have a server in godaddy Its port access for tcp listeners is closed,so can I get the client's port number from its request to an aspx page?
1
vote
5answers
469 views

Communication between two computers without opening ports, using a third computer to set up the connection

Let's say I have a server, and two clients connected to it. (via TCP, but it doesn't matter) My goal is to allow a direct connection between those two clients. This is to allow direct voice contact ...
1
vote
2answers
141 views

Skype protocol and supernodes

I have a question about the skype protocol. Supposedly, according to wiki, the supernodes in Skype are used in UDP hole punching. The supernodes are nodes without firewalls/NATs. My question is, how ...
1
vote
1answer
164 views

Comparison of P2P Technology

I have gone through various udp based P2P Technology like Stun . I have implemented UDP/TCP hole punching recently for implementing p2p. I found there are other technology as for like ICE,UPnP and ...
1
vote
1answer
791 views

c++ Hole punching UDP(RTP)

I am doing a client-server voice chat program(unmanaged C++,win32) in which clients connects to the server using TCP and textchat/chatroom functions are done in TCP while all audiotransmission is sent ...
1
vote
2answers
195 views

How to perform p2p behind 2 nats?

I'm trying to send 'hello' btw 2 clients, each behind a firewalled NAT, without success. UDP or TCP punching are just as fine, for now. client A expecting to receive 'hello p': set -- $( wget -qO- ...
0
votes
0answers
14 views

PHP, Java Servlet, or C# WebService as NAT Intermediary Server

Instead of renting a server on Amazon and other hosting companies (which would cost many dollars / month), is it possible to setup a Java Servlet, C# WebService, or a simple PHP website (with socket ...
0
votes
2answers
107 views

Difference between UdpClient.Send method and UdpClient.Client.Send method

I can either send data throughout the udp protocol with the UdpClient.Send(byte array) or the UdpClient.Client.Send(stream) method. both methods work. the only differences are that on one method I ...
0
votes
3answers
195 views

udp packet loss and recovery

I am working on both udp/tcp based P2P for file and real time video streaming application.the application will be developed for both Linux and windows platform using c++. We are using ICE(TCP/UDP ...
0
votes
3answers
182 views

Bypass router using server to initiate connection

I would like to create simple chat program in Java, which could work on p2p basis. Using public server to only initiate connection. But I am not even sure this is possible. I succesfully implemented ...
0
votes
3answers
137 views

Is it possible to force a source port on a NetConnection?

I'm new to ActionScript, but I'm trying to decipher a pre-existing project and make some modifications as I go. I have a section of code that starts with creating a new NetConnection and then ...
0
votes
3answers
1k views

Connect two computer over http without public IP

I'll like to computers/clients to connect directly to each other in the case where one or both of them haven't got a public IP. I guess this could be done with a server as a middle man. The connection ...