Peer-to-peer (P2P) computing or networking is a distributed application architecture that partitions tasks or workloads between peers.
64
votes
8answers
40k views
Detect the specific iPhone/iPod touch model [duplicate]
Possible Duplicate:
Determine device (iPhone, iPod Touch) with iPhone SDK
I am making a game that utilizes the peer-to-peer bluetooth capabilities of the iPhone (and probably the iPod touch ...
2
votes
3answers
4k views
C++ Winsock P2P
Scenario
Does anyone have any good examples of peer-to-peer (p2p) networking in C++ using Winsock?
It's a requirement I have for a client who specifically needs to use this technology (god knows ...
28
votes
3answers
11k views
How to make a browser to browser (peer to peer) connection? [closed]
I want to write a website using HTML5, CSS and JavaScript on client side that will allow direct tcp/ip connection between the client browsers once the page is loaded.
I need to do this to to reduce ...
3
votes
3answers
2k views
Programming P2P application
I am writing a custom p2p program that runs on port 4900. In some cases when the person is behind a router, this port is not accessible from the internet.
Is there an automatic way of enabling the ...
63
votes
9answers
86k views
Can Android do peer-to-peer ad-hoc networking?
Is it possible to set up Android in ad-hoc peer-to-peer wifi mode? For example, I would like to have one phone broadcast a message, and have all peers in the network receive the broadcast, without ...
9
votes
4answers
4k views
Does Flash10 + p2p really work?
I've been googling around and I still can't get it. Some people say: here you go, just use it. Others claim it has certain restrictions that does not allow you to use p2p the way you want it in Flash.
...
8
votes
6answers
8k views
Python Library/Framework for writing P2P applications
Is there any library or framework for writing P2P applications in Python ?
I know the initial Bittorrent client was written in Python. I'm looking something like JXTA but for Python.
4
votes
3answers
8k views
Developing Peer to Peer application in Java
i've got a university project where i need to develop a peer to peer system in java for file sharing.
So in essence several users should be able to share files using the Peer to Peer System.
Can ...
3
votes
3answers
3k views
Direct TCP/IP connections in P2P apps
From a Joel's post on Copilot:
Direct Connect! We’ve always done
everything we can to make sure that
Fog Creek Copilot can connect in any
networking situation, no matter what
firewalls ...
3
votes
2answers
12k views
How to implement P2P in C#?
Recently, I would like to develop a simple chat program using c# and Winform,Main feature is chat and file transfer ,But i can't found example about implement p2p using dotnet,Who can help me?
3
votes
2answers
1k views
Is it possible to create peer-to-peer connections in a web browser?
I am aware that an early draft of HTML5 specified peer-to-peer connections using the PeerToPeerConnection() constructor. However, this was replaced by WebSocket which, to my knowledge, does not ...
7
votes
9answers
3k views
Peer to Peer: Methods of Finding Peers
Are there any known methods of finding peers without using a dedicated central server?
ie: If I have peers which are disconnecting and reconnecting to the internet but getting a new IP address each ...
9
votes
5answers
12k views
How does Skype work without port forwarding?
I am designing a p2p application which works on port 30000. My router is not UPnP so I required to forward a port to router. But Skype a another p2p application works without port forwarding on my pc. ...
11
votes
2answers
3k views
What techniques are available to do P2P in the browser? [closed]
What options does a web developer currently have for implementing client-side peer-to-peer systems in the web browser? Some hypothetical examples might be a file-sharing service that bypasses the ...
19
votes
6answers
3k views
P2P library for C++ [closed]
Is there any good cross-platform C++ library for P2P networking (preferably UDP but TCP would work also). Originally I planned to use libjingle but since they do not provide any precompiled libraries ...
7
votes
5answers
9k views
Peer-to-Peer communication options
can anybody confirm what are the currently allowed methods for peer-to-peer communications within the Android framework? I need to transfer json strings and I'm currently using SMS which works ok but ...
5
votes
2answers
3k views
Android P2P (direct-connection) over the Internet (behind NAT)
I'm starting a small project, basically a multiplayer (as in more than two players) variation of the classic Battleship game.
One problem that I'm trying to resolve before I dive into coding is the ...
7
votes
1answer
6k views
Bluetooth peer to peer networking APIs iOS
G'Day programmers...I am planning to make an application which will be using peer to peer bluetooth connection between two different iOS device.
So my question is, is there any good tutorials which ...
4
votes
3answers
896 views
How to transmit live video over a Socket using Flex / ActionScript 3?
My Requirements are similar to this old question of 2009. I am just re-posting since OP is kind of 2 years old and the question is closed now.
How can I transmit live video Stream over a Socket ...
11
votes
1answer
7k views
Can HTML5 Websockets connect 2 clients (browsers) directly without using a server? (P2P)
Using HTML5 Websockets, can I open a socket directly between 2 clients (browsers) (assuming I know their IP addresses and there are no NAT traversal issues). I want to send some data directly from one ...
0
votes
3answers
2k views
JXTA P2P application over internet
I am learning JXTA and want to master it. I downloaded the tutorial programs from jxta website
I have run all those programs from only one PC and worked perfectly fine.
But I want it to work over ...
0
votes
1answer
363 views
How can I make a web application where multiple users can download a file off of another user's computer? [closed]
I wanted to make a web application for coworkers:
A user specifies a file on his computer.
Other multiple users can download that specified file off of his computer.
His computer would act as a ...
3
votes
2answers
1k views
Non blocking IO for Android
I'm currently trying to assess whether a project can be realised for Android. One major problem I see it that, since it's a P2P client, we'd have to keep a considerable amount of connections open when ...
2
votes
1answer
2k views
NAT translation not working from inside the network (hairpin condition)
I'm writing a P2P application. Peers regularly ping a main server to update their current IP/port, so when a peer wants to reach another one it can ask the server for that information. For now peers ...
0
votes
0answers
92 views
about P2P network Chord [closed]
according to my understanding of chord network
for a chord application, there is only 1 chord ring in the world or not?
for a certain file, the hash function only get 1 key
so this file only exists ...
28
votes
3answers
10k views
Simple enough explanation of a Distributed Hash Table (DHT)
Could any one give an explanation on how a DHT works.
Nothing too heavy, just the basics.
8
votes
3answers
4k views
The easiest DHT to implement
Which Distributed Hash Table (DHT) is easiest to implement in Python? Any good example that is not bloated?
I not am looking for a definition of DHT because I am more oriented and focused on design ...
3
votes
5answers
3k views
Direct P2P connection
This topic resembles this thread
I'm rather new to the topic of network programming, never having done anything but basic TCP/UDP on a single local machine. Now I'm developing an application that ...
9
votes
3answers
604 views
I want to build a decentralized, reddit-like system using P2P. What existing p2p library should I base it on?
I want to build a decentralized, reddit-like system using P2P. Basically, I want to retain the basic capabilities of reddit, but make it decentralized, to make it more robust and immune to censorship. ...
8
votes
4answers
4k views
How to transfer “data” between two device (android,iphone)?
How can i transfer data between two device? I would like to transfer data (mostly image file) between different platforms (android,iphone). Is it possible to use p2p or should i use client-server?
...
8
votes
1answer
3k views
.NET and P2P - writing a P2P messenger
Does anyone have any advice how to write such app? Or maybe knows some nice tutorial? I would like to use System.Net.PeerToPeer namespace, but everything I can find about it is MSDN which I can't read ...
1
vote
5answers
1k 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 ...
7
votes
1answer
2k views
Automatic authentication for Android WiFi Direct
In Android ICS, Wireless P2P (WiFi Direct) API is provided.
I tried to develop an Application which can connect 2 phones via Wireless P2P automatically if the MAC address match.
From SDK ...
5
votes
6answers
1k views
P2P network games/apps: Good choice for a “battle.net”-like matching server
I'm making a network game (1v1) where in-game its p2p - no need for a game server.
However, for players to be able to "find each other", without the need to coordinate in another medium and enter IP ...
4
votes
1answer
1k 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 ...
4
votes
3answers
5k views
HTML 5 Peer to Peer Video Possibilities? [closed]
Is there anything in HTML 5 that might allow peer to peer video ala Adobe Stratus and Flash 10?
There's lots of cool possibilities with P2P video and it'd be nice to build such applications without ...
3
votes
4answers
1k views
Is peer-to-peer communication over 3/4G possible for smart phones?
I'm trying to write an app that transfers data from one android device to another - but the devices are most likely located in different parts of the city, state, or country. (The straight forward way ...
6
votes
2answers
1k views
No P2P in Windows Metro applications?
In the "A .NET developer's view of Windows 8 app development" session at BUILD, the lecturer mentions that only the client-side WCF features are exposed in the Metro profile, we cannot create a ...
2
votes
2answers
595 views
Is there a P2P framework in c?
I try to implement some p2p functionality with c.
Is there any kind of framework?
What do you think taking libtorrent (http://libtorrent.rakshasa.no/) and do some adaptation there?
Or does anyone ...
1
vote
1answer
547 views
Looking for some good books/resources on understanding Bittorrent? [closed]
Looking for some good books or technical resources for a detailed understanding of how Bittorrent works? It would probably involve books on Network programming, P2P programming, and other topics.
7
votes
6answers
4k views
how do i make my own P2P software?
how can i make my own napster ? which library are these p2p programs using ? i am not too familiar with the concept of socket programming. could you make p2p program using Qt4 ?
i've been wondering ...
7
votes
3answers
2k views
How do I make a TCP server work behind a router (NAT) without any redirection configuration needed
The scenario is the following. I have two machines A and B:
A: Client (behind NAT)
B: Server (behind NAT)
I want B to be able to listen on any given port, so that A can send packets to B through that ...
4
votes
2answers
2k views
Are there any mature P2P frameworks/libraries in C#? [closed]
I am looking for a reliable P2P framework or library, preferrably natively written in C#, but can also work with something C# can interface with. Have you came across or have worked with a solid one?
...
3
votes
1answer
4k views
OpenSSL: RSA Encryption/Decryption, key generation & key persistance
I am trying to build a p2p application that requires the following, using RSA in OpenSSL:
-Encryption
-Decryption
-Generating Keys (done)
-Saving and loading keys (done)
-Saving the PUBLIC key as ...
3
votes
2answers
1k views
Does WCF supports Peer-to-peer implementation?
I'm trying to implement peer-to-peer messaging and file sharing utility within LAN, So does WCF supports p2p? Does any one tried file sharing trough WCF?
3
votes
1answer
582 views
Proper way to implement a Direct Connect client in Twisted?
I'm working on writing a Python client for Direct Connect P2P networks. Essentially, it works by connecting to a central server, and responding to other users who are searching for files.
...
2
votes
2answers
1k views
Behind NAT to behind NAT connection
I've come across an interesting problem. Basically I have 2 mobile phones that are both behind NATs. I want to communicate directly between the 2 devices using UDP.
I know if I initiate a ...
2
votes
2answers
1k views
p2p video conference
I have developed a peer to peer wpf application and in it I am just broadcasting my video to other peers, but I also want to see their video at the same time. Currently I do not know how to pass my ...
1
vote
2answers
702 views
iPhone P2P - is GKSession unreliable beyond 4 peers?
Original question:
The iOS Developer Library mentions in the Game Kit Programming Guide that
The maximum size of a client-server game is 16 players.
Does this limitation also apply to P2P ...
1
vote
3answers
2k views
Flash Sockets, Peer-to-Peer Capabilities
Quick Intro: We have a flash tetris game finished and we are looking to add multiplayer functionality to the game. After a few days of research on the capabilities of flash and sockets, I've gotten ...

