-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44fca27
commit 146197c
Showing
20 changed files
with
4,813 additions
and
1,043 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
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; | ||
} | ||
|
||
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.