Files
cunicu/pkg/pb/session.proto
Steffen Vogel c73c8b4262 pb: harmonization of protobuf package name
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-05-04 14:05:51 +02:00

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;
}