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