add: basic webrtc is working

This commit is contained in:
Charles Hathaway
2023-09-28 20:35:50 -07:00
parent 7fbd4fff69
commit 19bb6c49b4
22 changed files with 2615 additions and 330 deletions
+3
View File
@@ -96,9 +96,12 @@ message IceMessage {
oneof type {
IceCandidate candidate = 1;
IceSessionDescription session = 2;
NoMoreCandidates no_more_candidates = 3;
}
}
message NoMoreCandidates {}
message IceCandidate {
// Copied from https://pkg.go.dev/github.com/pion/webrtc/v4#ICECandidateInit
string candidate = 1;