Peer-to-peer (P2P) computing or networking is a distributed application architecture that partitions tasks or workloads between peers.

learn more… | top users | synonyms (1)

64
votes
8answers
39k 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 ...
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 ...
54
votes
1answer
555 views

Getting MSDN PeerChannel “SecureChat” running on Windows Server 2008 R2

I can only get this SDK sample of PeerChannel SecureChat to work in the following scenarios in a basic home network: Locally among instances running on the same machine, or Among Windows 7 machines ...
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 ...
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.
21
votes
8answers
3k views

Why is p2p web hosting not widely used? [closed]

We can see the growth of systems using peer to peer principles. But there is an area where peer to peer is not (yet) widely used: web hosting. Several projects are already launched, but there is no ...
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 ...
15
votes
1answer
448 views

Is there any way to run a server or peer-to-peer from a browser?

The title basically says it all. I'm aware this can't be done using traditional means. I'm not aware of any way to do it using Web Sockets, though I've never built anything more than toy apps with ...
14
votes
6answers
4k views

Fast Cross Platform Inter Process Communication in C++

I'm looking for a way to get two programs to efficiently transmit a large amount of data to each other, which needs to work on Linux and Windows, in C++. The context here is a P2P network program that ...
12
votes
5answers
1k views

What's the technology behind live stream sites?

It's amazing to notice that live stream sites like doitlive.tv can deliver videos on very low bandwidth (as low as 25kbps) home connection. Could someone explain me the technology behind such sites ...
12
votes
3answers
420 views

Self organizing applications

I have the following requirements for an application that many people will be using in the office - no Server component. All instances of client apps should somehow negotiate between themselves to ...
11
votes
4answers
13k views

How does DHT in torrents work?

I'm coding a p2p implementation that I would like to make decentralized however I'm having some trouble grasping how DHT in protocols like bittorrent work. How does the client know where the peers are ...
11
votes
4answers
2k views

Fully Decentralized P2P?

I’m looking at creating a P2P system. During initial research, I’m reading from Peer-to-Peer – Harnessing the Power of Disruptive Technologies. That book states “a fully decentralized approach to ...
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 ...
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 ...
11
votes
1answer
2k views

setting up iPhone P2P only over bluetooth and without GKPeerPickerController

I want to use a custom interface to connect with other iDevices in a p2p game. I know I can either use GKSession and GKSessionDelegate or use the lower level Bonjour browsing. But both of them will ...
11
votes
2answers
417 views

Controlling your phone from laptop

Idea: create a remote control for your android phone. Why: I like listening music on my phone in a dock station with speakers connected. Now sometimes I want to turn the volume up/down, change the ...
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. ...
9
votes
1answer
5k views

How to write a simple Bittorrent application?

How to write a simple bittorrent application. Something like a "hello world" using a bittorrent library, I mean a simplest of the application to understand the working of bittorrent. I would prefer a ...
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. ...
9
votes
5answers
467 views

An algorithm for distributed or decentralised reputation/trust

Does anyone know of an algorithm for computing how much you 'trust' another user (their reputation) in a decentralised system. Sites like this one use a centralised authority to track reputation ...
9
votes
4answers
3k views

Twisted and p2p applications

Can you tell me: could I use twisted for p2p-applications creating? And what protocols should I choose for this?
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. ...
9
votes
6answers
4k views

GKSession - what if I have Bluetooth and Wi-Fi turned off?

I'm working on an iPhone app that will allow for peer-to-peer connections. From what I understand, I have the choice between using GKPeerPicker or the GKSession. I don't like the idea of using the ...
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
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.
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 ...
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 ...
8
votes
1answer
425 views

Distributed algorithm design

I've been reading Introduction to Algorithms and started to get a few ideas and questions popping up in my head. The one that's baffled me most is how you would approach designing an algorithm to ...
8
votes
1answer
942 views

How the DHT protocol works ? Are my thoughts correct?

Im trying to understand how the DHT protocol works, specially on the file-sharing-torrent world. I read many articles, but im still confused with the filename-value hash generation. My thoughs how ...
8
votes
1answer
894 views

Getting started with a custom JXTA PeerGroup

I have been working with JXTA 2.3 for the last year or so for a peer-to-peer computing platform I am developing. I am migrating to JXTA 2.5 and in the process I am trying to clean up a lot of my use ...
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 ...
7
votes
7answers
3k views

Is it possible to connect a socket between two mobile devices (iPhones) over the internet?

Is it possible to connect a socket between two mobile devices (iPhones) over the internet? I am trying to discover the IP of each device and connect directly. I know it can be done with Bonjour but ...
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 ...
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 ...
7
votes
1answer
927 views

The peerID used in GameKit framework, is always unique for each device?

The peerID assigned to your device in a GKSession, is it always the same for the same device? I mean, every time you create a GKSession, your peerID will be the same one? or a random one is assigned ...
7
votes
1answer
2k views

How to implement my own Cirrus (previously named Stratus) server?

I am interesting in creating a P2P application using Cirrus (http://labs.adobe.com/technologies/cirrus/rtmfpgroups.html). The examples given create a connection with servers managed by Adobe. I'd ...
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
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 ...
7
votes
3answers
4k views

Open-source p2p videoconferencing in Flash or Java?

I want to build a community website with videoconferencing functionality integrated. I would prefer to provide this from within the browser, so I'm looking for a Java- or Flash-based solution. Also, ...
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 ...
7
votes
2answers
885 views

Can lidgren-network library connect directly peer to peer given both IP addresses

I am using lidgen-network library 3 to try and create a peer to peer connection. I am new to network programming which is why i'm using this library. Using the DiscoverKnownPeer() function i have ...
7
votes
1answer
758 views

Best practices for .Net WCF NAT Traversal

I'm looking for suggestions or a solution for peer-to-peer NAT traversal in .Net. Say I have a chat application and two clients need to connect but both are behind NAT: For home scenarios, uPNP is ...
6
votes
2answers
969 views

twisted - get OS-chosen listen port

I am writing a twisted P2P client using the application framework. The listen port for incoming connections will be on a random (OS-determined) port. However, I need a way to determine what that port ...
6
votes
2answers
689 views

android socket programming behind a router

Hey guys I have a question or problem. I am trying to make a p2p connection between two android phones. I have each phone connect to my server and I get their private (192.168.1.1) and public ...
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 ...
6
votes
6answers
1k views

Browser to browser communication without a server?

Is there any possible way to have browsers communicating to each other over lan/wan without the use of a server (direct peer-to-peer)?
6
votes
1answer
669 views

Peer-to-Peer video from iOS to Android?

I'm start to develop/prototype a Peer-to-Peer video chat application for iOS and Android. I'm trying to create a similar experience to FaceTime or Tango -- ie good quality video, works across the ...
6
votes
5answers
2k views

Is there a p2p database implementation out there

Currently, I am researching p2p application models. I believe even though the peers share data between each other, there is still a database server somewhere that holds user account information. Take ...
6
votes
5answers
1k views

How to utilize network for p2p file sharing on Android Platform?

I'm working on some apps for the android platform and I have two problems that I'm not quite sure how to approach, and both are closely related. How can I send a relatively small data file from one ...

1 2 3 4 5 18