Tagged Questions
Peer-to-peer (P2P) computing or networking is a distributed application architecture that partitions tasks or workloads between peers.
37
votes
7answers
61k 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 ...
30
votes
8answers
16k views
Detect the specific iPhone/iPod touch model [closed]
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 ...
17
votes
8answers
2k views
Why is p2p web hosting not widely used?
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 ...
14
votes
1answer
220 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
2k 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
4answers
3k 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.
11
votes
5answers
637 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 ...
10
votes
1answer
798 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 ...
10
votes
5answers
783 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 ...
9
votes
2answers
325 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
2answers
428 views
What techniques are available to do P2P in the browser?
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 ...
8
votes
4answers
3k 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
5answers
318 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 ...
7
votes
2answers
426 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
6answers
4k 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.
7
votes
4answers
2k 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?
6
votes
1answer
133 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 ...
6
votes
1answer
182 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 ...
6
votes
1answer
648 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 ...
6
votes
7answers
1k 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 ...
6
votes
2answers
675 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 ...
5
votes
2answers
188 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 ...
5
votes
2answers
189 views
iOS Online Game w/o Server?
I've made an iOS game that works over both Bluetooth and bonjour. It works great both ways, but I'd really like it if players could play with eachother with any Internet connection, be it edge, 3G, or ...
5
votes
3answers
200 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 ...
5
votes
3answers
702 views
How to make a browser to browser (peer to peer) connection?
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 ...
5
votes
5answers
735 views
p2p web programming
I been trying to search a bit about this and I have faint memories that I have seen presentations of p2p in flash or silverlight and I was wandering if theres any good ways to use this from ...
5
votes
1answer
159 views
Push data from device to device?
Is it possible to push data directly from one device to another over the mobile network without using a server and without wifi or Bluetooth?
(Both have the same app installed.)
How? :)
5
votes
2answers
543 views
How do I tell if a bonjour service is wi fi or bluetooth?
I am building an app that sends information between two iPhones. The app is working great but the one problem I am having is that I have no way of telling whether bonjour is choosing wi-fi or ...
5
votes
5answers
1k 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 ...
5
votes
1answer
1k 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 ...
5
votes
5answers
847 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 ...
5
votes
5answers
3k 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 ...
5
votes
2answers
838 views
How to implement a WCF NetPeerTcpBinding PeerResolver
I can't use Peer Name Resolution Protocol on our network because our server farm's routers won't support IPv6.
So, I'm attempting to implement my own PeerResolver using a database.
The Register ...
5
votes
1answer
694 views
Understanding the Bittorrent Protocol
I am looking for some books, tutorial sites .
I want to understand how Bittorrent protocol works and later to implement my own tracker .
I don't have a big knowledge in network protocols so I am ...
5
votes
3answers
2k 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, ...
5
votes
2answers
2k 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 ...
5
votes
6answers
857 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 ...
5
votes
7answers
3k views
How to test iphone p2p aplications?
Is there a way to test iphone OS 3.0 p2p applications?
Can I run multiple iphone simulator instances? Aperantly no.
Any help?
4
votes
3answers
146 views
Availability data
I'm creating a simulator for a large scale P2P-system. In order to make the simulations as good as possible I would like to use data from the real world. I'd like to use this data to simulate each ...
4
votes
5answers
356 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 ...
4
votes
1answer
579 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 ...
4
votes
1answer
242 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 ...
4
votes
3answers
192 views
Selecting a Multicast IP Address
I'm having trouble understanding how multicast addresses work.
First off, is it true that if I have N clients or peers working on separate networks, they all subscribe to the same multicast group, ...
4
votes
2answers
655 views
UDP hole-punching: testability on single machine
I'm writing a simple P2P application to test the feasibilty of using UDP hole-punching in a larger project.
I tried my test apps from home yesterday and they worked.
However, I am now at work and ...
4
votes
5answers
437 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)?
4
votes
3answers
294 views
Java P2P - what options are there?
I'm looking to write a decentralised application that would run over some kind of peer to peer framework. I have fairly limited requirements:
search for peers offering a particular service
advertise ...
4
votes
2answers
838 views
Are there any mature P2P frameworks/libraries in C#?
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?
...
4
votes
7answers
240 views
Can I establish a connection with other computer using JavaScript?
Is the following possible? There are 2 persons working on 2 different computers. Both are connected to the Internet. These users can communicate with each other using a JavaScript program run in a ...
4
votes
6answers
5k 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. ...
4
votes
2answers
2k views
Web P2P video confrence solution
I'm looking for the best possible solution which will allow me to incorporate live video/audio conference between 2 users(only 2 at this point) into a flash gaming platform.
The video chat is not just ...