mirror of
https://github.com/LuanRT/googlevideo.git
synced 2026-07-02 21:52:46 +00:00
13 lines
315 B
Protocol Buffer
13 lines
315 B
Protocol Buffer
syntax = "proto2";
|
|
package video_streaming;
|
|
|
|
import "misc/common.proto";
|
|
import "video_streaming/onesie_proxy_status.proto";
|
|
|
|
message OnesiePlayerResponse {
|
|
optional OnesieProxyStatus onesie_proxy_status = 1;
|
|
optional int32 http_status = 2;
|
|
repeated .misc.HttpHeader headers = 3;
|
|
optional bytes body = 4;
|
|
}
|