pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
776 B
23 lines
776 B
syntax = "proto2";
|
|
package foobar;
|
|
|
|
enum GCProtoBufMsgSrc {
|
|
GCProtoBufMsgSrc_Unspecified = 0;
|
|
GCProtoBufMsgSrc_FromSystem = 1;
|
|
GCProtoBufMsgSrc_FromSteamID = 2;
|
|
GCProtoBufMsgSrc_FromGC = 3;
|
|
GCProtoBufMsgSrc_ReplySystem = 4;
|
|
}
|
|
|
|
message CMsgProtoBufHeader {
|
|
optional fixed64 client_steam_id = 1;
|
|
optional int32 client_session_id = 2;
|
|
optional uint32 source_app_id = 3;
|
|
optional fixed64 job_id_source = 10 [default = 18446744073709551615];
|
|
optional fixed64 job_id_target = 11 [default = 18446744073709551615];
|
|
optional string target_job_name = 12;
|
|
optional int32 eresult = 13 [default = 2];
|
|
optional string error_message = 14;
|
|
optional foobar.GCProtoBufMsgSrc gc_msg_src = 200 [default = GCProtoBufMsgSrc_Unspecified];
|
|
optional uint32 gc_dir_index_source = 201;
|
|
}
|
|
|