mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-04 16:32:57 +08:00
26 lines
559 B
Protocol Buffer
26 lines
559 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package wice;
|
|
option go_package = "riasc.eu/wice/pkg/pb";
|
|
|
|
import "candidate.proto";
|
|
|
|
// SDP-like session description
|
|
// See: https://www.rfc-editor.org/rfc/rfc8866.html
|
|
message SessionDescription {
|
|
// Session epoch, incremented with each offer
|
|
int64 epoch = 1;
|
|
|
|
// Indicates that an agent is a lite implementation.
|
|
bool lite = 2;
|
|
|
|
// ICE username fragment
|
|
string ufrag = 3;
|
|
|
|
// ICE password
|
|
string pwd = 4;
|
|
|
|
// List of ICE candidates used for connectivity checks
|
|
repeated Candidate candidates = 5;
|
|
}
|