12 lines
292 B
Protocol Buffer
12 lines
292 B
Protocol Buffer
syntax = "proto2";
|
|
package video_streaming;
|
|
|
|
import "misc/common.proto";
|
|
|
|
message OnesiePlayerRequest {
|
|
optional string url = 1;
|
|
repeated misc.HttpHeader headers = 2;
|
|
optional string body = 3;
|
|
optional bool proxied_by_trusted_bandaid = 4;
|
|
optional bool skip_response_encryption = 6;
|
|
}
|