Coder Social home page Coder Social logo

mock-signaling_server_pocketnet's Introduction

Signaling server protocol overview

  • Signaling server accept websocket connections.
  • Signaling server uses json as a data protocol
  • All messages have property "type" which should be one of the following:
    • "protocol". This means that this message is part of webrtc protocol and should be redirected.
    • "list". Answer on this message will be the list of registered client's IP addresses.
    • "registerme". Signaling server will register connection as waiting for webrtc's offer.
  • Nodes are connecting to signaling server and send "registerme" request.
  • Clients are connecting to signaling server, sending "list" request and starting webrtc protocol with choosen registered node.

Request details:

"registerme" request:

{"type": "registerme"}
  • Will register node as waiting for connections. No answer provided (yet to discuss, there is no problem to send answer)

"list" request

{"type": "list"}
  • Signaling server answers with array of registered node's IP addresses, e.x.:
["123.111.231.23", "12.12.12.12"]

"protocol" request

{"type": "protocol", "ip": "12.213.1.31", "message": {"...protocol message here..."}
  • Sends a webrtc protocol message to specified ip address. Signaling server just redirects the whole message (not only webrtc protocol's part) to specified ip and change specified ip (that was destination ip) to sender's ip (so the receiver will know ip of the sender)

mock-signaling_server_pocketnet's People

Contributors

lostystyg avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.