Questions tagged [peer]

A peer-to-peer (P2P) network is a type of decentralized and distributed network architecture in which individual nodes in the network (called "peers") act as both suppliers and consumers of resources, in contrast to the centralized client–server model where client nodes request access to resources provided by central servers.

A peer-to-peer (P2P) network is a type of decentralized and distributed network architecture in which individual nodes in the network (called "peers") act as both suppliers and consumers of resources, in contrast to the centralized client–server model where client nodes request access to resources provided by central servers.

In a peer-to-peer network, tasks (such as searching for files or streaming audio/video) are shared amongst multiple interconnected peers who each make a portion of their resources (such as processing power, disk storage or network bandwidth) directly available to other network participants, without the need for centralized coordination by servers.

Wikipedia: http://en.wikipedia.org/wiki/Peer-to-peer

316 questions
2
votes
1 answer

C# UDP punchthrough without rendevous server

I am writing a program that requires two clients (peer-to-peer) to connect to each other without the use of any server whatsoever, even just in the matchmaking process. Both clients already know each others' public and private IPs. One or both…
HalpPlz
  • 691
  • 4
  • 11
2
votes
2 answers

UDP Multicasting system

I am trying to create a distributed informational system that use peer to peer architecture with multicasting communication. First of all I started to implement multicasting communication. I never did it so I have some issues that is hard to…
Chris
  • 884
  • 2
  • 11
  • 22
2
votes
2 answers

Connection time out in Java Server-Client

I have a small program where a Server-Client program is getting connected on the same network, but the same program shows a connection time out error in the client program. I have connected the two systems using LAN cable. Server import…
question
  • 392
  • 1
  • 4
  • 15
2
votes
1 answer

TURN And STUN Server Credentials

I am follwing this http://www.html5rocks.com/en/tutorials/webrtc/infrastructure tutorial. This tutorial or discussion is about TURN/STUN servers. And this tutorial add turn and stun server code like below. { 'iceServers': [ { 'url':…
Dvlpr
  • 453
  • 3
  • 8
  • 20
2
votes
1 answer

MobaXterm - reset by peer on SSH server

I am using MobaXterm and it does really almost all what I need. Nevertheless, on some server I was not able to connect to it through SSH. As it is working with putty, I have from MobaXterm "Read from socket failed : Connection reset by peer". Is…
PaulLanobre
  • 243
  • 4
  • 6
2
votes
1 answer

WebRTC data channel stack on readyState "conecting"

I am trying to create a webRTC connection with a datachannel (only), but when I use the code provided bellow, and run initCall(), the readyState of the data channel is stack on "connecting" and never changes. I am using the atest version of chrome.…
byteSlayer
  • 1,806
  • 5
  • 18
  • 36
2
votes
1 answer

Forcing youtube to be cached throught cache_peer in squid

I would like to force a squid proxy to use a proxy cache peer form everything related to Youtube. My main squid server is on server A, it is a realy simple setup, with nearly no rules, everything is authorized. Server A is linked to server B via…
iXô
  • 1,133
  • 1
  • 16
  • 39
2
votes
0 answers

Is it possible peer to peer connection over WAN without any server?

I need to send a file from computer to computer in Java. I do it in a local network with a server/client model. But is it possible to do that over wide area network? Clients might under the NAT. I send manually the external address and internal…
2
votes
1 answer

Random peer selection algorithm in peer-to-peer game?

I'm developing a poker game for iPhone/iPad which uses Apple's matchmaking service. I'll be using a client-server topology where the dealer is the server. With each hand there will be a new server/dealer. However, before the initial dealer/server…
Bishop
  • 115
  • 1
  • 8
1
vote
0 answers

can not get peer stream because of re render issue

I'm trying to create a video chat with react.js and there is an issue that I don't know how to solve. I need to save peer stream from peer.on('stream',...) when it appears, but as it appears at the second render and I set empty array as dependency…
Vahan
  • 151
  • 1
  • 1
  • 5
1
vote
0 answers

React PeerJS 'call' event never triggered

I am developing a video chat application using React and Express. However, I'm encountering an issue where the "on call" event handler of a new user is not being triggered when they try to connect to an ongoing chat. It seems that despite the other…
1
vote
1 answer

Command peer not found while initializing the ledger with assets. - Hyperledger Fabric 2.5

I'm following this documentation: https://hyperledger-fabric.readthedocs.io/en/release-2.5/getting_started.html Run the following command of section "Interacting with the network" peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride…
KT023
  • 29
  • 3
1
vote
1 answer

npm WARN ERESOLVE overriding peer dependency in aws amplify

We are using react & map api named react-naver-maps we publish server by aws amplify suddenly build was failed I know the ways to solve this error in local computer npm install --force or npm install --legacy-peer-deps we don't know how to fix this…
YoonDH
  • 11
  • 2
1
vote
1 answer

WCF P2P over the internet

Hey guys I am trying to learn how to create a P2P application in Windows Communication foundation and I have a simple test client created so far that can communicate on the Intranet just fine. That is... I can run the application multiple times on…
Raziaar
  • 23
  • 3
1
vote
0 answers

Adding a new Media Stream in mid of a call in WebRTC (peerjs)

I am making a WebRTC video call application using peerjs library and every peer can chose what stream to start the call with, so I have two streams audio and video stream: const peer = new Peer() let remotePeerConnection = null let audioStream; let…