Go to file
Zack Scholl 1fb242308d don't use 65534 2019-11-12 14:31:15 -08:00
src don't use 65534 2019-11-12 14:31:15 -08:00
README.md check ordering 2019-11-11 16:59:22 -08:00
go.mod tidy 2019-11-12 10:29:10 -08:00
go.sum tidy 2019-11-12 10:29:10 -08:00
main.go works server<->server 2019-11-11 22:03:12 -08:00

README.md

    Clients connect to websockets and broadcasts "ready".
    If client receives "ready" then it becomes the rtcOfferer and initiates (note that being an offerer does not mean it is the sender, that will be established later).
    Establish secure passphrase using PAKE
    Establish RTC communication
    Communication moves to the RTC channel


1: rtcOfferer


    createOffer
    setLocalDescription
    SEND offer
    RECIEVE answer
    setRemoteDescription(answer)


2: rtcAnswerer


    setLocalDescription
    RECEIVE offer
    setRemoteDescription(offer)
    createAnswer
    SEND answer