steam-proto 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.rubocop.yml +4 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/LICENSE +21 -0
- data/README.md +1 -0
- data/Rakefile +11 -0
- data/bin/console +6 -0
- data/bin/setup +8 -0
- data/lib/steam/proto.rb +24 -0
- data/lib/steam/proto/csgo.rb +4 -0
- data/lib/steam/proto/csgo/cstrike15_gcmessages.pb.rb +1458 -0
- data/lib/steam/proto/csgo/cstrike15_usermessages.pb.rb +711 -0
- data/lib/steam/proto/csgo/descriptor.pb.rb +265 -0
- data/lib/steam/proto/csgo/engine_gcmessages.pb.rb +21 -0
- data/lib/steam/proto/csgo/gcsdk_gcmessages.pb.rb +371 -0
- data/lib/steam/proto/csgo/gcsystemmsgs.pb.rb +139 -0
- data/lib/steam/proto/csgo/netmessages.pb.rb +736 -0
- data/lib/steam/proto/csgo/steammessages.pb.rb +809 -0
- data/lib/steam/proto/gc.rb +2 -0
- data/lib/steam/proto/gc/gc.pb.rb +30 -0
- data/lib/steam/proto/steamclient.rb +4 -0
- data/lib/steam/proto/steamclient/descriptor.pb.rb +265 -0
- data/lib/steam/proto/steamclient/encrypted_app_ticket.pb.rb +17 -0
- data/lib/steam/proto/steamclient/steammessages_base.pb.rb +104 -0
- data/lib/steam/proto/steamclient/steammessages_clientserver.pb.rb +2206 -0
- data/lib/steam/proto/steamclient/steammessages_clientserver_2.pb.rb +2007 -0
- data/lib/steam/proto/version.rb +5 -0
- data/lib/tasks/proto.rake +61 -0
- data/lib/tasks/spec.rake +12 -0
- data/steam-proto.gemspec +33 -0
- metadata +148 -0
@@ -0,0 +1,30 @@
|
|
1
|
+
## Generated from gc.proto
|
2
|
+
require "beefcake"
|
3
|
+
|
4
|
+
module Gc
|
5
|
+
|
6
|
+
module GCProtoBufMsgSrc
|
7
|
+
GCProtoBufMsgSrc_Unspecified = 0
|
8
|
+
GCProtoBufMsgSrc_FromSystem = 1
|
9
|
+
GCProtoBufMsgSrc_FromSteamID = 2
|
10
|
+
GCProtoBufMsgSrc_FromGC = 3
|
11
|
+
GCProtoBufMsgSrc_ReplySystem = 4
|
12
|
+
end
|
13
|
+
|
14
|
+
class CMsgProtoBufHeader
|
15
|
+
include Beefcake::Message
|
16
|
+
end
|
17
|
+
|
18
|
+
class CMsgProtoBufHeader
|
19
|
+
optional :client_steam_id, :fixed64, 1
|
20
|
+
optional :client_session_id, :int32, 2
|
21
|
+
optional :source_app_id, :uint32, 3
|
22
|
+
optional :job_id_source, :fixed64, 10, :default => 18446744073709551615
|
23
|
+
optional :job_id_target, :fixed64, 11, :default => 18446744073709551615
|
24
|
+
optional :target_job_name, :string, 12
|
25
|
+
optional :eresult, :int32, 13, :default => 2
|
26
|
+
optional :error_message, :string, 14
|
27
|
+
optional :gc_msg_src, GCProtoBufMsgSrc, 200, :default => GCProtoBufMsgSrc::GCProtoBufMsgSrc_Unspecified
|
28
|
+
optional :gc_dir_index_source, :uint32, 201
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,265 @@
|
|
1
|
+
## Generated from google/protobuf/descriptor.proto for google.protobuf
|
2
|
+
require "beefcake"
|
3
|
+
|
4
|
+
module Steamclient
|
5
|
+
|
6
|
+
class FileDescriptorSet
|
7
|
+
include Beefcake::Message
|
8
|
+
end
|
9
|
+
|
10
|
+
class FileDescriptorProto
|
11
|
+
include Beefcake::Message
|
12
|
+
end
|
13
|
+
|
14
|
+
class DescriptorProto
|
15
|
+
include Beefcake::Message
|
16
|
+
|
17
|
+
class ExtensionRange
|
18
|
+
include Beefcake::Message
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
class FieldDescriptorProto
|
23
|
+
include Beefcake::Message
|
24
|
+
|
25
|
+
module Type
|
26
|
+
TYPE_DOUBLE = 1
|
27
|
+
TYPE_FLOAT = 2
|
28
|
+
TYPE_INT64 = 3
|
29
|
+
TYPE_UINT64 = 4
|
30
|
+
TYPE_INT32 = 5
|
31
|
+
TYPE_FIXED64 = 6
|
32
|
+
TYPE_FIXED32 = 7
|
33
|
+
TYPE_BOOL = 8
|
34
|
+
TYPE_STRING = 9
|
35
|
+
TYPE_GROUP = 10
|
36
|
+
TYPE_MESSAGE = 11
|
37
|
+
TYPE_BYTES = 12
|
38
|
+
TYPE_UINT32 = 13
|
39
|
+
TYPE_ENUM = 14
|
40
|
+
TYPE_SFIXED32 = 15
|
41
|
+
TYPE_SFIXED64 = 16
|
42
|
+
TYPE_SINT32 = 17
|
43
|
+
TYPE_SINT64 = 18
|
44
|
+
end
|
45
|
+
|
46
|
+
module Label
|
47
|
+
LABEL_OPTIONAL = 1
|
48
|
+
LABEL_REQUIRED = 2
|
49
|
+
LABEL_REPEATED = 3
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
class EnumDescriptorProto
|
54
|
+
include Beefcake::Message
|
55
|
+
end
|
56
|
+
|
57
|
+
class EnumValueDescriptorProto
|
58
|
+
include Beefcake::Message
|
59
|
+
end
|
60
|
+
|
61
|
+
class ServiceDescriptorProto
|
62
|
+
include Beefcake::Message
|
63
|
+
end
|
64
|
+
|
65
|
+
class MethodDescriptorProto
|
66
|
+
include Beefcake::Message
|
67
|
+
end
|
68
|
+
|
69
|
+
class FileOptions
|
70
|
+
include Beefcake::Message
|
71
|
+
|
72
|
+
module OptimizeMode
|
73
|
+
SPEED = 1
|
74
|
+
CODE_SIZE = 2
|
75
|
+
LITE_RUNTIME = 3
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
class MessageOptions
|
80
|
+
include Beefcake::Message
|
81
|
+
end
|
82
|
+
|
83
|
+
class FieldOptions
|
84
|
+
include Beefcake::Message
|
85
|
+
|
86
|
+
module CType
|
87
|
+
STRING = 0
|
88
|
+
CORD = 1
|
89
|
+
STRING_PIECE = 2
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
class EnumOptions
|
94
|
+
include Beefcake::Message
|
95
|
+
end
|
96
|
+
|
97
|
+
class EnumValueOptions
|
98
|
+
include Beefcake::Message
|
99
|
+
end
|
100
|
+
|
101
|
+
class ServiceOptions
|
102
|
+
include Beefcake::Message
|
103
|
+
end
|
104
|
+
|
105
|
+
class MethodOptions
|
106
|
+
include Beefcake::Message
|
107
|
+
end
|
108
|
+
|
109
|
+
class UninterpretedOption
|
110
|
+
include Beefcake::Message
|
111
|
+
|
112
|
+
class NamePart
|
113
|
+
include Beefcake::Message
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
class SourceCodeInfo
|
118
|
+
include Beefcake::Message
|
119
|
+
|
120
|
+
class Location
|
121
|
+
include Beefcake::Message
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
class FileDescriptorSet
|
126
|
+
repeated :file, FileDescriptorProto, 1
|
127
|
+
end
|
128
|
+
|
129
|
+
class FileDescriptorProto
|
130
|
+
optional :name, :string, 1
|
131
|
+
optional :package, :string, 2
|
132
|
+
repeated :dependency, :string, 3
|
133
|
+
repeated :public_dependency, :int32, 10
|
134
|
+
repeated :weak_dependency, :int32, 11
|
135
|
+
repeated :message_type, DescriptorProto, 4
|
136
|
+
repeated :enum_type, EnumDescriptorProto, 5
|
137
|
+
repeated :service, ServiceDescriptorProto, 6
|
138
|
+
repeated :extension, FieldDescriptorProto, 7
|
139
|
+
optional :options, FileOptions, 8
|
140
|
+
optional :source_code_info, SourceCodeInfo, 9
|
141
|
+
end
|
142
|
+
|
143
|
+
class DescriptorProto
|
144
|
+
|
145
|
+
class ExtensionRange
|
146
|
+
optional :start, :int32, 1
|
147
|
+
optional :end, :int32, 2
|
148
|
+
end
|
149
|
+
optional :name, :string, 1
|
150
|
+
repeated :field, FieldDescriptorProto, 2
|
151
|
+
repeated :extension, FieldDescriptorProto, 6
|
152
|
+
repeated :nested_type, DescriptorProto, 3
|
153
|
+
repeated :enum_type, EnumDescriptorProto, 4
|
154
|
+
repeated :extension_range, DescriptorProto::ExtensionRange, 5
|
155
|
+
optional :options, MessageOptions, 7
|
156
|
+
end
|
157
|
+
|
158
|
+
class FieldDescriptorProto
|
159
|
+
optional :name, :string, 1
|
160
|
+
optional :number, :int32, 3
|
161
|
+
optional :label, FieldDescriptorProto::Label, 4
|
162
|
+
optional :type, FieldDescriptorProto::Type, 5
|
163
|
+
optional :type_name, :string, 6
|
164
|
+
optional :extendee, :string, 2
|
165
|
+
optional :default_value, :string, 7
|
166
|
+
optional :options, FieldOptions, 8
|
167
|
+
end
|
168
|
+
|
169
|
+
class EnumDescriptorProto
|
170
|
+
optional :name, :string, 1
|
171
|
+
repeated :value, EnumValueDescriptorProto, 2
|
172
|
+
optional :options, EnumOptions, 3
|
173
|
+
end
|
174
|
+
|
175
|
+
class EnumValueDescriptorProto
|
176
|
+
optional :name, :string, 1
|
177
|
+
optional :number, :int32, 2
|
178
|
+
optional :options, EnumValueOptions, 3
|
179
|
+
end
|
180
|
+
|
181
|
+
class ServiceDescriptorProto
|
182
|
+
optional :name, :string, 1
|
183
|
+
repeated :method, MethodDescriptorProto, 2
|
184
|
+
optional :options, ServiceOptions, 3
|
185
|
+
end
|
186
|
+
|
187
|
+
class MethodDescriptorProto
|
188
|
+
optional :name, :string, 1
|
189
|
+
optional :input_type, :string, 2
|
190
|
+
optional :output_type, :string, 3
|
191
|
+
optional :options, MethodOptions, 4
|
192
|
+
end
|
193
|
+
|
194
|
+
class FileOptions
|
195
|
+
optional :java_package, :string, 1
|
196
|
+
optional :java_outer_classname, :string, 8
|
197
|
+
optional :java_multiple_files, :bool, 10, :default => false
|
198
|
+
optional :java_generate_equals_and_hash, :bool, 20, :default => false
|
199
|
+
optional :optimize_for, FileOptions::OptimizeMode, 9, :default => FileOptions::OptimizeMode::SPEED
|
200
|
+
optional :go_package, :string, 11
|
201
|
+
optional :cc_generic_services, :bool, 16, :default => false
|
202
|
+
optional :java_generic_services, :bool, 17, :default => false
|
203
|
+
optional :py_generic_services, :bool, 18, :default => false
|
204
|
+
repeated :uninterpreted_option, UninterpretedOption, 999
|
205
|
+
end
|
206
|
+
|
207
|
+
class MessageOptions
|
208
|
+
optional :message_set_wire_format, :bool, 1, :default => false
|
209
|
+
optional :no_standard_descriptor_accessor, :bool, 2, :default => false
|
210
|
+
repeated :uninterpreted_option, UninterpretedOption, 999
|
211
|
+
end
|
212
|
+
|
213
|
+
class FieldOptions
|
214
|
+
optional :ctype, FieldOptions::CType, 1, :default => FieldOptions::CType::STRING
|
215
|
+
optional :packed, :bool, 2
|
216
|
+
optional :lazy, :bool, 5, :default => false
|
217
|
+
optional :deprecated, :bool, 3, :default => false
|
218
|
+
optional :experimental_map_key, :string, 9
|
219
|
+
optional :weak, :bool, 10, :default => false
|
220
|
+
repeated :uninterpreted_option, UninterpretedOption, 999
|
221
|
+
end
|
222
|
+
|
223
|
+
class EnumOptions
|
224
|
+
optional :allow_alias, :bool, 2, :default => true
|
225
|
+
repeated :uninterpreted_option, UninterpretedOption, 999
|
226
|
+
end
|
227
|
+
|
228
|
+
class EnumValueOptions
|
229
|
+
repeated :uninterpreted_option, UninterpretedOption, 999
|
230
|
+
end
|
231
|
+
|
232
|
+
class ServiceOptions
|
233
|
+
repeated :uninterpreted_option, UninterpretedOption, 999
|
234
|
+
end
|
235
|
+
|
236
|
+
class MethodOptions
|
237
|
+
repeated :uninterpreted_option, UninterpretedOption, 999
|
238
|
+
end
|
239
|
+
|
240
|
+
class UninterpretedOption
|
241
|
+
|
242
|
+
class NamePart
|
243
|
+
required :name_part, :string, 1
|
244
|
+
required :is_extension, :bool, 2
|
245
|
+
end
|
246
|
+
repeated :name, UninterpretedOption::NamePart, 2
|
247
|
+
optional :identifier_value, :string, 3
|
248
|
+
optional :positive_int_value, :uint64, 4
|
249
|
+
optional :negative_int_value, :int64, 5
|
250
|
+
optional :double_value, :double, 6
|
251
|
+
optional :string_value, :bytes, 7
|
252
|
+
optional :aggregate_value, :string, 8
|
253
|
+
end
|
254
|
+
|
255
|
+
class SourceCodeInfo
|
256
|
+
|
257
|
+
class Location
|
258
|
+
repeated :path, :int32, 1
|
259
|
+
repeated :span, :int32, 2
|
260
|
+
optional :leading_comments, :string, 3
|
261
|
+
optional :trailing_comments, :string, 4
|
262
|
+
end
|
263
|
+
repeated :location, SourceCodeInfo::Location, 1
|
264
|
+
end
|
265
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
## Generated from encrypted_app_ticket.proto
|
2
|
+
require "beefcake"
|
3
|
+
|
4
|
+
module Steamclient
|
5
|
+
|
6
|
+
class EncryptedAppTicket
|
7
|
+
include Beefcake::Message
|
8
|
+
end
|
9
|
+
|
10
|
+
class EncryptedAppTicket
|
11
|
+
optional :ticket_version_no, :uint32, 1
|
12
|
+
optional :crc_encryptedticket, :uint32, 2
|
13
|
+
optional :cb_encrypteduserdata, :uint32, 3
|
14
|
+
optional :cb_encrypted_appownershipticket, :uint32, 4
|
15
|
+
optional :encrypted_ticket, :bytes, 5
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,104 @@
|
|
1
|
+
## Generated from steammessages_base.proto
|
2
|
+
require "beefcake"
|
3
|
+
|
4
|
+
module Steamclient
|
5
|
+
|
6
|
+
class CMsgProtoBufHeader
|
7
|
+
include Beefcake::Message
|
8
|
+
end
|
9
|
+
|
10
|
+
class CMsgMulti
|
11
|
+
include Beefcake::Message
|
12
|
+
end
|
13
|
+
|
14
|
+
class CMsgProtobufWrapped
|
15
|
+
include Beefcake::Message
|
16
|
+
end
|
17
|
+
|
18
|
+
class CMsgAuthTicket
|
19
|
+
include Beefcake::Message
|
20
|
+
end
|
21
|
+
|
22
|
+
class CCDDBAppDetailCommon
|
23
|
+
include Beefcake::Message
|
24
|
+
end
|
25
|
+
|
26
|
+
class CMsgAppRights
|
27
|
+
include Beefcake::Message
|
28
|
+
end
|
29
|
+
|
30
|
+
class CMsgProtoBufHeader
|
31
|
+
optional :steamid, :fixed64, 1
|
32
|
+
optional :client_sessionid, :int32, 2
|
33
|
+
optional :routing_appid, :uint32, 3
|
34
|
+
optional :jobid_source, :fixed64, 10, :default => 18446744073709551615
|
35
|
+
optional :jobid_target, :fixed64, 11, :default => 18446744073709551615
|
36
|
+
optional :target_job_name, :string, 12
|
37
|
+
optional :seq_num, :int32, 24
|
38
|
+
optional :eresult, :int32, 13, :default => 2
|
39
|
+
optional :error_message, :string, 14
|
40
|
+
optional :ip, :uint32, 15
|
41
|
+
optional :auth_account_flags, :uint32, 16
|
42
|
+
optional :token_source, :uint32, 22
|
43
|
+
optional :admin_spoofing_user, :bool, 23
|
44
|
+
optional :transport_error, :int32, 17, :default => 1
|
45
|
+
optional :messageid, :uint64, 18, :default => 18446744073709551615
|
46
|
+
optional :publisher_group_id, :uint32, 19
|
47
|
+
optional :sysid, :uint32, 20
|
48
|
+
optional :trace_tag, :uint64, 21
|
49
|
+
optional :webapi_key_id, :uint32, 25
|
50
|
+
optional :is_from_external_source, :bool, 26
|
51
|
+
end
|
52
|
+
|
53
|
+
class CMsgMulti
|
54
|
+
optional :size_unzipped, :uint32, 1
|
55
|
+
optional :message_body, :bytes, 2
|
56
|
+
end
|
57
|
+
|
58
|
+
class CMsgProtobufWrapped
|
59
|
+
optional :message_body, :bytes, 1
|
60
|
+
end
|
61
|
+
|
62
|
+
class CMsgAuthTicket
|
63
|
+
optional :estate, :uint32, 1
|
64
|
+
optional :eresult, :uint32, 2, :default => 2
|
65
|
+
optional :steamid, :fixed64, 3
|
66
|
+
optional :gameid, :fixed64, 4
|
67
|
+
optional :h_steam_pipe, :uint32, 5
|
68
|
+
optional :ticket_crc, :uint32, 6
|
69
|
+
optional :ticket, :bytes, 7
|
70
|
+
end
|
71
|
+
|
72
|
+
class CCDDBAppDetailCommon
|
73
|
+
optional :appid, :uint32, 1
|
74
|
+
optional :name, :string, 2
|
75
|
+
optional :icon, :string, 3
|
76
|
+
optional :logo, :string, 4
|
77
|
+
optional :logo_small, :string, 5
|
78
|
+
optional :tool, :bool, 6
|
79
|
+
optional :demo, :bool, 7
|
80
|
+
optional :media, :bool, 8
|
81
|
+
optional :community_visible_stats, :bool, 9
|
82
|
+
optional :friendly_name, :string, 10
|
83
|
+
optional :propagation, :string, 11
|
84
|
+
optional :has_adult_content, :bool, 12
|
85
|
+
end
|
86
|
+
|
87
|
+
class CMsgAppRights
|
88
|
+
optional :edit_info, :bool, 1
|
89
|
+
optional :publish, :bool, 2
|
90
|
+
optional :view_error_data, :bool, 3
|
91
|
+
optional :download, :bool, 4
|
92
|
+
optional :upload_cdkeys, :bool, 5
|
93
|
+
optional :generate_cdkeys, :bool, 6
|
94
|
+
optional :view_financials, :bool, 7
|
95
|
+
optional :manage_ceg, :bool, 8
|
96
|
+
optional :manage_signing, :bool, 9
|
97
|
+
optional :manage_cdkeys, :bool, 10
|
98
|
+
optional :edit_marketing, :bool, 11
|
99
|
+
optional :economy_support, :bool, 12
|
100
|
+
optional :economy_support_supervisor, :bool, 13
|
101
|
+
optional :manage_pricing, :bool, 14
|
102
|
+
optional :broadcast_live, :bool, 15
|
103
|
+
end
|
104
|
+
end
|
@@ -0,0 +1,2206 @@
|
|
1
|
+
## Generated from steammessages_clientserver.proto
|
2
|
+
require "beefcake"
|
3
|
+
|
4
|
+
module Steamclient
|
5
|
+
|
6
|
+
class CMsgClientHeartBeat
|
7
|
+
include Beefcake::Message
|
8
|
+
end
|
9
|
+
|
10
|
+
class CMsgClientUDSP2PSessionStarted
|
11
|
+
include Beefcake::Message
|
12
|
+
end
|
13
|
+
|
14
|
+
class CMsgClientUDSP2PSessionEnded
|
15
|
+
include Beefcake::Message
|
16
|
+
end
|
17
|
+
|
18
|
+
class CMsgClientRegisterAuthTicketWithCM
|
19
|
+
include Beefcake::Message
|
20
|
+
end
|
21
|
+
|
22
|
+
class CMsgClientTicketAuthComplete
|
23
|
+
include Beefcake::Message
|
24
|
+
end
|
25
|
+
|
26
|
+
class CMsgClientLogon
|
27
|
+
include Beefcake::Message
|
28
|
+
end
|
29
|
+
|
30
|
+
class CMsgClientLogonResponse
|
31
|
+
include Beefcake::Message
|
32
|
+
end
|
33
|
+
|
34
|
+
class CMsgClientRequestWebAPIAuthenticateUserNonce
|
35
|
+
include Beefcake::Message
|
36
|
+
end
|
37
|
+
|
38
|
+
class CMsgClientRequestWebAPIAuthenticateUserNonceResponse
|
39
|
+
include Beefcake::Message
|
40
|
+
end
|
41
|
+
|
42
|
+
class CMsgClientLogOff
|
43
|
+
include Beefcake::Message
|
44
|
+
end
|
45
|
+
|
46
|
+
class CMsgClientLoggedOff
|
47
|
+
include Beefcake::Message
|
48
|
+
end
|
49
|
+
|
50
|
+
class CMsgClientCMList
|
51
|
+
include Beefcake::Message
|
52
|
+
end
|
53
|
+
|
54
|
+
class CMsgClientP2PConnectionInfo
|
55
|
+
include Beefcake::Message
|
56
|
+
end
|
57
|
+
|
58
|
+
class CMsgClientP2PConnectionFailInfo
|
59
|
+
include Beefcake::Message
|
60
|
+
end
|
61
|
+
|
62
|
+
class CMsgClientGetAppOwnershipTicket
|
63
|
+
include Beefcake::Message
|
64
|
+
end
|
65
|
+
|
66
|
+
class CMsgClientGetAppOwnershipTicketResponse
|
67
|
+
include Beefcake::Message
|
68
|
+
end
|
69
|
+
|
70
|
+
class CMsgClientSessionToken
|
71
|
+
include Beefcake::Message
|
72
|
+
end
|
73
|
+
|
74
|
+
class CMsgClientGameConnectTokens
|
75
|
+
include Beefcake::Message
|
76
|
+
end
|
77
|
+
|
78
|
+
class CMsgGSServerType
|
79
|
+
include Beefcake::Message
|
80
|
+
end
|
81
|
+
|
82
|
+
class CMsgGSStatusReply
|
83
|
+
include Beefcake::Message
|
84
|
+
end
|
85
|
+
|
86
|
+
class CMsgGSPlayerList
|
87
|
+
include Beefcake::Message
|
88
|
+
|
89
|
+
class Player
|
90
|
+
include Beefcake::Message
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
class CMsgGSUserPlaying
|
95
|
+
include Beefcake::Message
|
96
|
+
end
|
97
|
+
|
98
|
+
class CMsgGSDisconnectNotice
|
99
|
+
include Beefcake::Message
|
100
|
+
end
|
101
|
+
|
102
|
+
class CMsgClientGamesPlayed
|
103
|
+
include Beefcake::Message
|
104
|
+
|
105
|
+
class GamePlayed
|
106
|
+
include Beefcake::Message
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
class CMsgGSApprove
|
111
|
+
include Beefcake::Message
|
112
|
+
end
|
113
|
+
|
114
|
+
class CMsgGSDeny
|
115
|
+
include Beefcake::Message
|
116
|
+
end
|
117
|
+
|
118
|
+
class CMsgGSKick
|
119
|
+
include Beefcake::Message
|
120
|
+
end
|
121
|
+
|
122
|
+
class CMsgClientAuthList
|
123
|
+
include Beefcake::Message
|
124
|
+
end
|
125
|
+
|
126
|
+
class CMsgClientAuthListAck
|
127
|
+
include Beefcake::Message
|
128
|
+
end
|
129
|
+
|
130
|
+
class CMsgClientFriendsList
|
131
|
+
include Beefcake::Message
|
132
|
+
|
133
|
+
class Friend
|
134
|
+
include Beefcake::Message
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
class CMsgClientFriendsGroupsList
|
139
|
+
include Beefcake::Message
|
140
|
+
|
141
|
+
class FriendGroup
|
142
|
+
include Beefcake::Message
|
143
|
+
end
|
144
|
+
|
145
|
+
class FriendGroupsMembership
|
146
|
+
include Beefcake::Message
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
class CMsgClientPlayerNicknameList
|
151
|
+
include Beefcake::Message
|
152
|
+
|
153
|
+
class PlayerNickname
|
154
|
+
include Beefcake::Message
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
class CMsgClientSetPlayerNickname
|
159
|
+
include Beefcake::Message
|
160
|
+
end
|
161
|
+
|
162
|
+
class CMsgClientSetPlayerNicknameResponse
|
163
|
+
include Beefcake::Message
|
164
|
+
end
|
165
|
+
|
166
|
+
class CMsgClientLicenseList
|
167
|
+
include Beefcake::Message
|
168
|
+
|
169
|
+
class License
|
170
|
+
include Beefcake::Message
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
class CMsgClientLBSSetScore
|
175
|
+
include Beefcake::Message
|
176
|
+
end
|
177
|
+
|
178
|
+
class CMsgClientLBSSetScoreResponse
|
179
|
+
include Beefcake::Message
|
180
|
+
end
|
181
|
+
|
182
|
+
class CMsgClientLBSSetUGC
|
183
|
+
include Beefcake::Message
|
184
|
+
end
|
185
|
+
|
186
|
+
class CMsgClientLBSSetUGCResponse
|
187
|
+
include Beefcake::Message
|
188
|
+
end
|
189
|
+
|
190
|
+
class CMsgClientLBSFindOrCreateLB
|
191
|
+
include Beefcake::Message
|
192
|
+
end
|
193
|
+
|
194
|
+
class CMsgClientLBSFindOrCreateLBResponse
|
195
|
+
include Beefcake::Message
|
196
|
+
end
|
197
|
+
|
198
|
+
class CMsgClientLBSGetLBEntries
|
199
|
+
include Beefcake::Message
|
200
|
+
end
|
201
|
+
|
202
|
+
class CMsgClientLBSGetLBEntriesResponse
|
203
|
+
include Beefcake::Message
|
204
|
+
|
205
|
+
class Entry
|
206
|
+
include Beefcake::Message
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
class CMsgClientAccountInfo
|
211
|
+
include Beefcake::Message
|
212
|
+
end
|
213
|
+
|
214
|
+
class CMsgClientAppMinutesPlayedData
|
215
|
+
include Beefcake::Message
|
216
|
+
|
217
|
+
class AppMinutesPlayedData
|
218
|
+
include Beefcake::Message
|
219
|
+
end
|
220
|
+
end
|
221
|
+
|
222
|
+
class CMsgClientIsLimitedAccount
|
223
|
+
include Beefcake::Message
|
224
|
+
end
|
225
|
+
|
226
|
+
class CMsgClientRequestFriendData
|
227
|
+
include Beefcake::Message
|
228
|
+
end
|
229
|
+
|
230
|
+
class CMsgClientChangeStatus
|
231
|
+
include Beefcake::Message
|
232
|
+
end
|
233
|
+
|
234
|
+
class CMsgPersonaChangeResponse
|
235
|
+
include Beefcake::Message
|
236
|
+
end
|
237
|
+
|
238
|
+
class CMsgClientPersonaState
|
239
|
+
include Beefcake::Message
|
240
|
+
|
241
|
+
class Friend
|
242
|
+
include Beefcake::Message
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
class CMsgClientFriendProfileInfo
|
247
|
+
include Beefcake::Message
|
248
|
+
end
|
249
|
+
|
250
|
+
class CMsgClientFriendProfileInfoResponse
|
251
|
+
include Beefcake::Message
|
252
|
+
end
|
253
|
+
|
254
|
+
class CMsgClientServerList
|
255
|
+
include Beefcake::Message
|
256
|
+
|
257
|
+
class Server
|
258
|
+
include Beefcake::Message
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
class CMsgClientRequestedClientStats
|
263
|
+
include Beefcake::Message
|
264
|
+
|
265
|
+
class StatsToSend
|
266
|
+
include Beefcake::Message
|
267
|
+
end
|
268
|
+
end
|
269
|
+
|
270
|
+
class CMsgClientStat2
|
271
|
+
include Beefcake::Message
|
272
|
+
|
273
|
+
class StatDetail
|
274
|
+
include Beefcake::Message
|
275
|
+
end
|
276
|
+
end
|
277
|
+
|
278
|
+
class CMsgClientMMSCreateLobby
|
279
|
+
include Beefcake::Message
|
280
|
+
end
|
281
|
+
|
282
|
+
class CMsgClientMMSCreateLobbyResponse
|
283
|
+
include Beefcake::Message
|
284
|
+
end
|
285
|
+
|
286
|
+
class CMsgClientMMSJoinLobby
|
287
|
+
include Beefcake::Message
|
288
|
+
end
|
289
|
+
|
290
|
+
class CMsgClientMMSJoinLobbyResponse
|
291
|
+
include Beefcake::Message
|
292
|
+
|
293
|
+
class Member
|
294
|
+
include Beefcake::Message
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
298
|
+
class CMsgClientMMSLeaveLobby
|
299
|
+
include Beefcake::Message
|
300
|
+
end
|
301
|
+
|
302
|
+
class CMsgClientMMSLeaveLobbyResponse
|
303
|
+
include Beefcake::Message
|
304
|
+
end
|
305
|
+
|
306
|
+
class CMsgClientMMSGetLobbyList
|
307
|
+
include Beefcake::Message
|
308
|
+
|
309
|
+
class Filter
|
310
|
+
include Beefcake::Message
|
311
|
+
end
|
312
|
+
end
|
313
|
+
|
314
|
+
class CMsgClientMMSGetLobbyListResponse
|
315
|
+
include Beefcake::Message
|
316
|
+
|
317
|
+
class Lobby
|
318
|
+
include Beefcake::Message
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
class CMsgClientMMSSetLobbyData
|
323
|
+
include Beefcake::Message
|
324
|
+
end
|
325
|
+
|
326
|
+
class CMsgClientMMSSetLobbyDataResponse
|
327
|
+
include Beefcake::Message
|
328
|
+
end
|
329
|
+
|
330
|
+
class CMsgClientMMSGetLobbyData
|
331
|
+
include Beefcake::Message
|
332
|
+
end
|
333
|
+
|
334
|
+
class CMsgClientMMSLobbyData
|
335
|
+
include Beefcake::Message
|
336
|
+
|
337
|
+
class Member
|
338
|
+
include Beefcake::Message
|
339
|
+
end
|
340
|
+
end
|
341
|
+
|
342
|
+
class CMsgClientMMSSendLobbyChatMsg
|
343
|
+
include Beefcake::Message
|
344
|
+
end
|
345
|
+
|
346
|
+
class CMsgClientMMSLobbyChatMsg
|
347
|
+
include Beefcake::Message
|
348
|
+
end
|
349
|
+
|
350
|
+
class CMsgClientMMSSetLobbyOwner
|
351
|
+
include Beefcake::Message
|
352
|
+
end
|
353
|
+
|
354
|
+
class CMsgClientMMSSetLobbyOwnerResponse
|
355
|
+
include Beefcake::Message
|
356
|
+
end
|
357
|
+
|
358
|
+
class CMsgClientMMSSetLobbyLinked
|
359
|
+
include Beefcake::Message
|
360
|
+
end
|
361
|
+
|
362
|
+
class CMsgClientMMSSetLobbyGameServer
|
363
|
+
include Beefcake::Message
|
364
|
+
end
|
365
|
+
|
366
|
+
class CMsgClientMMSLobbyGameServerSet
|
367
|
+
include Beefcake::Message
|
368
|
+
end
|
369
|
+
|
370
|
+
class CMsgClientMMSUserJoinedLobby
|
371
|
+
include Beefcake::Message
|
372
|
+
end
|
373
|
+
|
374
|
+
class CMsgClientMMSUserLeftLobby
|
375
|
+
include Beefcake::Message
|
376
|
+
end
|
377
|
+
|
378
|
+
class CMsgClientMMSInviteToLobby
|
379
|
+
include Beefcake::Message
|
380
|
+
end
|
381
|
+
|
382
|
+
class CMsgClientUDSInviteToGame
|
383
|
+
include Beefcake::Message
|
384
|
+
end
|
385
|
+
|
386
|
+
class CMsgClientChatInvite
|
387
|
+
include Beefcake::Message
|
388
|
+
end
|
389
|
+
|
390
|
+
class CMsgClientConnectionStats
|
391
|
+
include Beefcake::Message
|
392
|
+
|
393
|
+
class Stats_Logon
|
394
|
+
include Beefcake::Message
|
395
|
+
end
|
396
|
+
|
397
|
+
class Stats_UDP
|
398
|
+
include Beefcake::Message
|
399
|
+
end
|
400
|
+
|
401
|
+
class Stats_VConn
|
402
|
+
include Beefcake::Message
|
403
|
+
end
|
404
|
+
end
|
405
|
+
|
406
|
+
class CMsgClientServersAvailable
|
407
|
+
include Beefcake::Message
|
408
|
+
|
409
|
+
class Server_Types_Available
|
410
|
+
include Beefcake::Message
|
411
|
+
end
|
412
|
+
end
|
413
|
+
|
414
|
+
class CMsgClientGetUserStats
|
415
|
+
include Beefcake::Message
|
416
|
+
end
|
417
|
+
|
418
|
+
class CMsgClientGetUserStatsResponse
|
419
|
+
include Beefcake::Message
|
420
|
+
|
421
|
+
class Stats
|
422
|
+
include Beefcake::Message
|
423
|
+
end
|
424
|
+
|
425
|
+
class Achievement_Blocks
|
426
|
+
include Beefcake::Message
|
427
|
+
end
|
428
|
+
end
|
429
|
+
|
430
|
+
class CMsgClientStoreUserStatsResponse
|
431
|
+
include Beefcake::Message
|
432
|
+
|
433
|
+
class Stats_Failed_Validation
|
434
|
+
include Beefcake::Message
|
435
|
+
end
|
436
|
+
end
|
437
|
+
|
438
|
+
class CMsgClientStoreUserStats2
|
439
|
+
include Beefcake::Message
|
440
|
+
|
441
|
+
class Stats
|
442
|
+
include Beefcake::Message
|
443
|
+
end
|
444
|
+
end
|
445
|
+
|
446
|
+
class CMsgClientStatsUpdated
|
447
|
+
include Beefcake::Message
|
448
|
+
|
449
|
+
class Updated_Stats
|
450
|
+
include Beefcake::Message
|
451
|
+
end
|
452
|
+
end
|
453
|
+
|
454
|
+
class CMsgClientStoreUserStats
|
455
|
+
include Beefcake::Message
|
456
|
+
|
457
|
+
class Stats_To_Store
|
458
|
+
include Beefcake::Message
|
459
|
+
end
|
460
|
+
end
|
461
|
+
|
462
|
+
class CMsgClientGetClientDetails
|
463
|
+
include Beefcake::Message
|
464
|
+
end
|
465
|
+
|
466
|
+
class CMsgClientReportOverlayDetourFailure
|
467
|
+
include Beefcake::Message
|
468
|
+
end
|
469
|
+
|
470
|
+
class CMsgClientGetClientDetailsResponse
|
471
|
+
include Beefcake::Message
|
472
|
+
|
473
|
+
class Game
|
474
|
+
include Beefcake::Message
|
475
|
+
end
|
476
|
+
end
|
477
|
+
|
478
|
+
class CMsgClientGetClientAppList
|
479
|
+
include Beefcake::Message
|
480
|
+
end
|
481
|
+
|
482
|
+
class CMsgClientGetClientAppListResponse
|
483
|
+
include Beefcake::Message
|
484
|
+
|
485
|
+
class App
|
486
|
+
include Beefcake::Message
|
487
|
+
|
488
|
+
class DLC
|
489
|
+
include Beefcake::Message
|
490
|
+
end
|
491
|
+
end
|
492
|
+
end
|
493
|
+
|
494
|
+
class CMsgClientInstallClientApp
|
495
|
+
include Beefcake::Message
|
496
|
+
end
|
497
|
+
|
498
|
+
class CMsgClientInstallClientAppResponse
|
499
|
+
include Beefcake::Message
|
500
|
+
end
|
501
|
+
|
502
|
+
class CMsgClientUninstallClientApp
|
503
|
+
include Beefcake::Message
|
504
|
+
end
|
505
|
+
|
506
|
+
class CMsgClientUninstallClientAppResponse
|
507
|
+
include Beefcake::Message
|
508
|
+
end
|
509
|
+
|
510
|
+
class CMsgClientSetClientAppUpdateState
|
511
|
+
include Beefcake::Message
|
512
|
+
end
|
513
|
+
|
514
|
+
class CMsgClientSetClientAppUpdateStateResponse
|
515
|
+
include Beefcake::Message
|
516
|
+
end
|
517
|
+
|
518
|
+
class CMsgClientUFSUploadFileRequest
|
519
|
+
include Beefcake::Message
|
520
|
+
end
|
521
|
+
|
522
|
+
class CMsgClientUFSUploadFileResponse
|
523
|
+
include Beefcake::Message
|
524
|
+
end
|
525
|
+
|
526
|
+
class CMsgClientUFSUploadCommit
|
527
|
+
include Beefcake::Message
|
528
|
+
|
529
|
+
class File
|
530
|
+
include Beefcake::Message
|
531
|
+
end
|
532
|
+
end
|
533
|
+
|
534
|
+
class CMsgClientUFSUploadCommitResponse
|
535
|
+
include Beefcake::Message
|
536
|
+
|
537
|
+
class File
|
538
|
+
include Beefcake::Message
|
539
|
+
end
|
540
|
+
end
|
541
|
+
|
542
|
+
class CMsgClientUFSFileChunk
|
543
|
+
include Beefcake::Message
|
544
|
+
end
|
545
|
+
|
546
|
+
class CMsgClientUFSTransferHeartbeat
|
547
|
+
include Beefcake::Message
|
548
|
+
end
|
549
|
+
|
550
|
+
class CMsgClientUFSUploadFileFinished
|
551
|
+
include Beefcake::Message
|
552
|
+
end
|
553
|
+
|
554
|
+
class CMsgClientUFSDeleteFileRequest
|
555
|
+
include Beefcake::Message
|
556
|
+
end
|
557
|
+
|
558
|
+
class CMsgClientUFSDeleteFileResponse
|
559
|
+
include Beefcake::Message
|
560
|
+
end
|
561
|
+
|
562
|
+
class CMsgClientUFSGetFileListForApp
|
563
|
+
include Beefcake::Message
|
564
|
+
end
|
565
|
+
|
566
|
+
class CMsgClientUFSGetFileListForAppResponse
|
567
|
+
include Beefcake::Message
|
568
|
+
|
569
|
+
class File
|
570
|
+
include Beefcake::Message
|
571
|
+
end
|
572
|
+
end
|
573
|
+
|
574
|
+
class CMsgClientUFSDownloadRequest
|
575
|
+
include Beefcake::Message
|
576
|
+
end
|
577
|
+
|
578
|
+
class CMsgClientUFSDownloadResponse
|
579
|
+
include Beefcake::Message
|
580
|
+
end
|
581
|
+
|
582
|
+
class CMsgClientUFSLoginRequest
|
583
|
+
include Beefcake::Message
|
584
|
+
end
|
585
|
+
|
586
|
+
class CMsgClientUFSLoginResponse
|
587
|
+
include Beefcake::Message
|
588
|
+
end
|
589
|
+
|
590
|
+
class CMsgClientRequestEncryptedAppTicket
|
591
|
+
include Beefcake::Message
|
592
|
+
end
|
593
|
+
|
594
|
+
class CMsgClientRequestEncryptedAppTicketResponse
|
595
|
+
include Beefcake::Message
|
596
|
+
end
|
597
|
+
|
598
|
+
class CMsgClientWalletInfoUpdate
|
599
|
+
include Beefcake::Message
|
600
|
+
end
|
601
|
+
|
602
|
+
class CMsgClientAppInfoUpdate
|
603
|
+
include Beefcake::Message
|
604
|
+
end
|
605
|
+
|
606
|
+
class CMsgClientAppInfoChanges
|
607
|
+
include Beefcake::Message
|
608
|
+
end
|
609
|
+
|
610
|
+
class CMsgClientAppInfoRequest
|
611
|
+
include Beefcake::Message
|
612
|
+
|
613
|
+
class App
|
614
|
+
include Beefcake::Message
|
615
|
+
end
|
616
|
+
end
|
617
|
+
|
618
|
+
class CMsgClientAppInfoResponse
|
619
|
+
include Beefcake::Message
|
620
|
+
|
621
|
+
class App
|
622
|
+
include Beefcake::Message
|
623
|
+
|
624
|
+
class Section
|
625
|
+
include Beefcake::Message
|
626
|
+
end
|
627
|
+
end
|
628
|
+
end
|
629
|
+
|
630
|
+
class CMsgClientPackageInfoRequest
|
631
|
+
include Beefcake::Message
|
632
|
+
end
|
633
|
+
|
634
|
+
class CMsgClientPackageInfoResponse
|
635
|
+
include Beefcake::Message
|
636
|
+
|
637
|
+
class Package
|
638
|
+
include Beefcake::Message
|
639
|
+
end
|
640
|
+
end
|
641
|
+
|
642
|
+
class CMsgClientPICSChangesSinceRequest
|
643
|
+
include Beefcake::Message
|
644
|
+
end
|
645
|
+
|
646
|
+
class CMsgClientPICSChangesSinceResponse
|
647
|
+
include Beefcake::Message
|
648
|
+
|
649
|
+
class PackageChange
|
650
|
+
include Beefcake::Message
|
651
|
+
end
|
652
|
+
|
653
|
+
class AppChange
|
654
|
+
include Beefcake::Message
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
658
|
+
class CMsgClientPICSProductInfoRequest
|
659
|
+
include Beefcake::Message
|
660
|
+
|
661
|
+
class AppInfo
|
662
|
+
include Beefcake::Message
|
663
|
+
end
|
664
|
+
|
665
|
+
class PackageInfo
|
666
|
+
include Beefcake::Message
|
667
|
+
end
|
668
|
+
end
|
669
|
+
|
670
|
+
class CMsgClientPICSProductInfoResponse
|
671
|
+
include Beefcake::Message
|
672
|
+
|
673
|
+
class AppInfo
|
674
|
+
include Beefcake::Message
|
675
|
+
end
|
676
|
+
|
677
|
+
class PackageInfo
|
678
|
+
include Beefcake::Message
|
679
|
+
end
|
680
|
+
end
|
681
|
+
|
682
|
+
class CMsgClientPICSAccessTokenRequest
|
683
|
+
include Beefcake::Message
|
684
|
+
end
|
685
|
+
|
686
|
+
class CMsgClientPICSAccessTokenResponse
|
687
|
+
include Beefcake::Message
|
688
|
+
|
689
|
+
class PackageToken
|
690
|
+
include Beefcake::Message
|
691
|
+
end
|
692
|
+
|
693
|
+
class AppToken
|
694
|
+
include Beefcake::Message
|
695
|
+
end
|
696
|
+
end
|
697
|
+
|
698
|
+
class CMsgClientUFSGetUGCDetails
|
699
|
+
include Beefcake::Message
|
700
|
+
end
|
701
|
+
|
702
|
+
class CMsgClientUFSGetUGCDetailsResponse
|
703
|
+
include Beefcake::Message
|
704
|
+
end
|
705
|
+
|
706
|
+
class CMsgClientUFSGetSingleFileInfo
|
707
|
+
include Beefcake::Message
|
708
|
+
end
|
709
|
+
|
710
|
+
class CMsgClientUFSGetSingleFileInfoResponse
|
711
|
+
include Beefcake::Message
|
712
|
+
end
|
713
|
+
|
714
|
+
class CMsgClientUFSShareFile
|
715
|
+
include Beefcake::Message
|
716
|
+
end
|
717
|
+
|
718
|
+
class CMsgClientUFSShareFileResponse
|
719
|
+
include Beefcake::Message
|
720
|
+
end
|
721
|
+
|
722
|
+
class CMsgClientNewLoginKey
|
723
|
+
include Beefcake::Message
|
724
|
+
end
|
725
|
+
|
726
|
+
class CMsgClientNewLoginKeyAccepted
|
727
|
+
include Beefcake::Message
|
728
|
+
end
|
729
|
+
|
730
|
+
class CMsgClientAMGetClanOfficers
|
731
|
+
include Beefcake::Message
|
732
|
+
end
|
733
|
+
|
734
|
+
class CMsgClientAMGetClanOfficersResponse
|
735
|
+
include Beefcake::Message
|
736
|
+
end
|
737
|
+
|
738
|
+
class CMsgClientAMGetPersonaNameHistory
|
739
|
+
include Beefcake::Message
|
740
|
+
|
741
|
+
class IdInstance
|
742
|
+
include Beefcake::Message
|
743
|
+
end
|
744
|
+
end
|
745
|
+
|
746
|
+
class CMsgClientAMGetPersonaNameHistoryResponse
|
747
|
+
include Beefcake::Message
|
748
|
+
|
749
|
+
class NameTableInstance
|
750
|
+
include Beefcake::Message
|
751
|
+
|
752
|
+
class NameInstance
|
753
|
+
include Beefcake::Message
|
754
|
+
end
|
755
|
+
end
|
756
|
+
end
|
757
|
+
|
758
|
+
class CMsgClientDeregisterWithServer
|
759
|
+
include Beefcake::Message
|
760
|
+
end
|
761
|
+
|
762
|
+
class CMsgClientClanState
|
763
|
+
include Beefcake::Message
|
764
|
+
|
765
|
+
class NameInfo
|
766
|
+
include Beefcake::Message
|
767
|
+
end
|
768
|
+
|
769
|
+
class UserCounts
|
770
|
+
include Beefcake::Message
|
771
|
+
end
|
772
|
+
|
773
|
+
class Event
|
774
|
+
include Beefcake::Message
|
775
|
+
end
|
776
|
+
end
|
777
|
+
|
778
|
+
class CMsgClientFriendMsg
|
779
|
+
include Beefcake::Message
|
780
|
+
end
|
781
|
+
|
782
|
+
class CMsgClientFriendMsgIncoming
|
783
|
+
include Beefcake::Message
|
784
|
+
end
|
785
|
+
|
786
|
+
class CMsgClientAddFriend
|
787
|
+
include Beefcake::Message
|
788
|
+
end
|
789
|
+
|
790
|
+
class CMsgClientAddFriendResponse
|
791
|
+
include Beefcake::Message
|
792
|
+
end
|
793
|
+
|
794
|
+
class CMsgClientRemoveFriend
|
795
|
+
include Beefcake::Message
|
796
|
+
end
|
797
|
+
|
798
|
+
class CMsgClientHideFriend
|
799
|
+
include Beefcake::Message
|
800
|
+
end
|
801
|
+
|
802
|
+
class CMsgClientHeartBeat
|
803
|
+
end
|
804
|
+
|
805
|
+
class CMsgClientUDSP2PSessionStarted
|
806
|
+
optional :steamid_remote, :fixed64, 1
|
807
|
+
optional :appid, :int32, 2
|
808
|
+
end
|
809
|
+
|
810
|
+
class CMsgClientUDSP2PSessionEnded
|
811
|
+
optional :steamid_remote, :fixed64, 1
|
812
|
+
optional :appid, :int32, 2
|
813
|
+
optional :session_length_sec, :int32, 3
|
814
|
+
optional :session_error, :int32, 4
|
815
|
+
optional :nattype, :int32, 5
|
816
|
+
optional :bytes_recv, :int32, 6
|
817
|
+
optional :bytes_sent, :int32, 7
|
818
|
+
optional :bytes_sent_relay, :int32, 8
|
819
|
+
optional :bytes_recv_relay, :int32, 9
|
820
|
+
optional :time_to_connect_ms, :int32, 10
|
821
|
+
end
|
822
|
+
|
823
|
+
class CMsgClientRegisterAuthTicketWithCM
|
824
|
+
optional :protocol_version, :uint32, 1
|
825
|
+
optional :ticket, :bytes, 3
|
826
|
+
optional :client_instance_id, :uint64, 4
|
827
|
+
end
|
828
|
+
|
829
|
+
class CMsgClientTicketAuthComplete
|
830
|
+
optional :steam_id, :fixed64, 1
|
831
|
+
optional :game_id, :fixed64, 2
|
832
|
+
optional :estate, :uint32, 3
|
833
|
+
optional :eauth_session_response, :uint32, 4
|
834
|
+
optional :DEPRECATED_ticket, :bytes, 5
|
835
|
+
optional :ticket_crc, :uint32, 6
|
836
|
+
optional :ticket_sequence, :uint32, 7
|
837
|
+
optional :owner_steam_id, :fixed64, 8
|
838
|
+
end
|
839
|
+
|
840
|
+
class CMsgClientLogon
|
841
|
+
optional :protocol_version, :uint32, 1
|
842
|
+
optional :obfustucated_private_ip, :uint32, 2
|
843
|
+
optional :cell_id, :uint32, 3
|
844
|
+
optional :last_session_id, :uint32, 4
|
845
|
+
optional :client_package_version, :uint32, 5
|
846
|
+
optional :client_language, :string, 6
|
847
|
+
optional :client_os_type, :uint32, 7
|
848
|
+
optional :should_remember_password, :bool, 8, :default => false
|
849
|
+
optional :wine_version, :string, 9
|
850
|
+
optional :ping_ms_from_cell_search, :uint32, 10
|
851
|
+
optional :public_ip, :uint32, 20
|
852
|
+
optional :qos_level, :uint32, 21
|
853
|
+
optional :client_supplied_steam_id, :fixed64, 22
|
854
|
+
optional :machine_id, :bytes, 30
|
855
|
+
optional :launcher_type, :uint32, 31, :default => 0
|
856
|
+
optional :ui_mode, :uint32, 32, :default => 0
|
857
|
+
optional :steam2_auth_ticket, :bytes, 41
|
858
|
+
optional :email_address, :string, 42
|
859
|
+
optional :rtime32_account_creation, :fixed32, 43
|
860
|
+
optional :account_name, :string, 50
|
861
|
+
optional :password, :string, 51
|
862
|
+
optional :game_server_token, :string, 52
|
863
|
+
optional :login_key, :string, 60
|
864
|
+
optional :was_converted_deprecated_msg, :bool, 70, :default => false
|
865
|
+
optional :anon_user_target_account_name, :string, 80
|
866
|
+
optional :resolved_user_steam_id, :fixed64, 81
|
867
|
+
optional :eresult_sentryfile, :int32, 82
|
868
|
+
optional :sha_sentryfile, :bytes, 83
|
869
|
+
optional :auth_code, :string, 84
|
870
|
+
optional :otp_type, :int32, 85
|
871
|
+
optional :otp_value, :uint32, 86
|
872
|
+
optional :otp_identifier, :string, 87
|
873
|
+
optional :steam2_ticket_request, :bool, 88
|
874
|
+
optional :sony_psn_ticket, :bytes, 90
|
875
|
+
optional :sony_psn_service_id, :string, 91
|
876
|
+
optional :create_new_psn_linked_account_if_needed, :bool, 92, :default => false
|
877
|
+
optional :sony_psn_name, :string, 93
|
878
|
+
optional :game_server_app_id, :int32, 94
|
879
|
+
optional :steamguard_dont_remember_computer, :bool, 95
|
880
|
+
optional :machine_name, :string, 96
|
881
|
+
optional :machine_name_userchosen, :string, 97
|
882
|
+
optional :country_override, :string, 98
|
883
|
+
optional :is_steam_box, :bool, 99
|
884
|
+
optional :client_instance_id, :uint64, 100
|
885
|
+
optional :two_factor_code, :string, 101
|
886
|
+
optional :supports_rate_limit_response, :bool, 102
|
887
|
+
end
|
888
|
+
|
889
|
+
class CMsgClientLogonResponse
|
890
|
+
optional :eresult, :int32, 1, :default => 2
|
891
|
+
optional :out_of_game_heartbeat_seconds, :int32, 2
|
892
|
+
optional :in_game_heartbeat_seconds, :int32, 3
|
893
|
+
optional :public_ip, :uint32, 4
|
894
|
+
optional :rtime32_server_time, :fixed32, 5
|
895
|
+
optional :account_flags, :uint32, 6
|
896
|
+
optional :cell_id, :uint32, 7
|
897
|
+
optional :email_domain, :string, 8
|
898
|
+
optional :steam2_ticket, :bytes, 9
|
899
|
+
optional :eresult_extended, :int32, 10
|
900
|
+
optional :webapi_authenticate_user_nonce, :string, 11
|
901
|
+
optional :cell_id_ping_threshold, :uint32, 12
|
902
|
+
optional :use_pics, :bool, 13
|
903
|
+
optional :vanity_url, :string, 14
|
904
|
+
optional :client_supplied_steamid, :fixed64, 20
|
905
|
+
optional :ip_country_code, :string, 21
|
906
|
+
optional :parental_settings, :bytes, 22
|
907
|
+
optional :parental_setting_signature, :bytes, 23
|
908
|
+
optional :count_loginfailures_to_migrate, :int32, 24
|
909
|
+
optional :count_disconnects_to_migrate, :int32, 25
|
910
|
+
optional :ogs_data_report_time_window, :int32, 26
|
911
|
+
optional :client_instance_id, :uint64, 27
|
912
|
+
end
|
913
|
+
|
914
|
+
class CMsgClientRequestWebAPIAuthenticateUserNonce
|
915
|
+
end
|
916
|
+
|
917
|
+
class CMsgClientRequestWebAPIAuthenticateUserNonceResponse
|
918
|
+
optional :eresult, :int32, 1, :default => 2
|
919
|
+
optional :webapi_authenticate_user_nonce, :string, 11
|
920
|
+
end
|
921
|
+
|
922
|
+
class CMsgClientLogOff
|
923
|
+
end
|
924
|
+
|
925
|
+
class CMsgClientLoggedOff
|
926
|
+
optional :eresult, :int32, 1, :default => 2
|
927
|
+
end
|
928
|
+
|
929
|
+
class CMsgClientCMList
|
930
|
+
repeated :cm_addresses, :uint32, 1
|
931
|
+
repeated :cm_ports, :uint32, 2
|
932
|
+
end
|
933
|
+
|
934
|
+
class CMsgClientP2PConnectionInfo
|
935
|
+
optional :steam_id_dest, :fixed64, 1
|
936
|
+
optional :steam_id_src, :fixed64, 2
|
937
|
+
optional :app_id, :uint32, 3
|
938
|
+
optional :candidate, :bytes, 4
|
939
|
+
end
|
940
|
+
|
941
|
+
class CMsgClientP2PConnectionFailInfo
|
942
|
+
optional :steam_id_dest, :fixed64, 1
|
943
|
+
optional :steam_id_src, :fixed64, 2
|
944
|
+
optional :app_id, :uint32, 3
|
945
|
+
optional :ep2p_session_error, :uint32, 4
|
946
|
+
end
|
947
|
+
|
948
|
+
class CMsgClientGetAppOwnershipTicket
|
949
|
+
optional :app_id, :uint32, 1
|
950
|
+
end
|
951
|
+
|
952
|
+
class CMsgClientGetAppOwnershipTicketResponse
|
953
|
+
optional :eresult, :uint32, 1, :default => 2
|
954
|
+
optional :app_id, :uint32, 2
|
955
|
+
optional :ticket, :bytes, 3
|
956
|
+
end
|
957
|
+
|
958
|
+
class CMsgClientSessionToken
|
959
|
+
optional :token, :uint64, 1
|
960
|
+
end
|
961
|
+
|
962
|
+
class CMsgClientGameConnectTokens
|
963
|
+
optional :max_tokens_to_keep, :uint32, 1, :default => 10
|
964
|
+
repeated :tokens, :bytes, 2
|
965
|
+
end
|
966
|
+
|
967
|
+
class CMsgGSServerType
|
968
|
+
optional :app_id_served, :uint32, 1
|
969
|
+
optional :flags, :uint32, 2
|
970
|
+
optional :game_ip_address, :uint32, 3
|
971
|
+
optional :game_port, :uint32, 4
|
972
|
+
optional :game_dir, :string, 5
|
973
|
+
optional :game_version, :string, 6
|
974
|
+
optional :game_query_port, :uint32, 7
|
975
|
+
end
|
976
|
+
|
977
|
+
class CMsgGSStatusReply
|
978
|
+
optional :is_secure, :bool, 1
|
979
|
+
end
|
980
|
+
|
981
|
+
class CMsgGSPlayerList
|
982
|
+
|
983
|
+
class Player
|
984
|
+
optional :steam_id, :uint64, 1
|
985
|
+
optional :public_ip, :uint32, 2
|
986
|
+
optional :token, :bytes, 3
|
987
|
+
end
|
988
|
+
repeated :players, CMsgGSPlayerList::Player, 1
|
989
|
+
end
|
990
|
+
|
991
|
+
class CMsgGSUserPlaying
|
992
|
+
optional :steam_id, :fixed64, 1
|
993
|
+
optional :public_ip, :uint32, 2
|
994
|
+
optional :token, :bytes, 3
|
995
|
+
end
|
996
|
+
|
997
|
+
class CMsgGSDisconnectNotice
|
998
|
+
optional :steam_id, :fixed64, 1
|
999
|
+
end
|
1000
|
+
|
1001
|
+
class CMsgClientGamesPlayed
|
1002
|
+
|
1003
|
+
class GamePlayed
|
1004
|
+
optional :steam_id_gs, :uint64, 1
|
1005
|
+
optional :game_id, :fixed64, 2
|
1006
|
+
optional :game_ip_address, :uint32, 3
|
1007
|
+
optional :game_port, :uint32, 4
|
1008
|
+
optional :is_secure, :bool, 5
|
1009
|
+
optional :token, :bytes, 6
|
1010
|
+
optional :game_extra_info, :string, 7
|
1011
|
+
optional :game_data_blob, :bytes, 8
|
1012
|
+
optional :process_id, :uint32, 9
|
1013
|
+
optional :streaming_provider_id, :uint32, 10
|
1014
|
+
optional :game_flags, :uint32, 11
|
1015
|
+
optional :owner_id, :uint32, 12
|
1016
|
+
optional :vr_hmd_vendor, :string, 13
|
1017
|
+
optional :vr_hmd_model, :string, 14
|
1018
|
+
optional :launch_option_type, :uint32, 15, :default => 0
|
1019
|
+
optional :primary_controller_type, :int32, 16, :default => -1
|
1020
|
+
optional :primary_steam_controller_serial, :string, 17
|
1021
|
+
optional :total_steam_controller_count, :uint32, 18, :default => 0
|
1022
|
+
optional :total_non_steam_controller_count, :uint32, 19, :default => 0
|
1023
|
+
optional :controller_workshop_file_id, :uint64, 20, :default => 0
|
1024
|
+
end
|
1025
|
+
repeated :games_played, CMsgClientGamesPlayed::GamePlayed, 1
|
1026
|
+
optional :client_os_type, :uint32, 2
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class CMsgGSApprove
|
1030
|
+
optional :steam_id, :fixed64, 1
|
1031
|
+
optional :owner_steam_id, :fixed64, 2
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
class CMsgGSDeny
|
1035
|
+
optional :steam_id, :fixed64, 1
|
1036
|
+
optional :edeny_reason, :int32, 2
|
1037
|
+
optional :deny_string, :string, 3
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class CMsgGSKick
|
1041
|
+
optional :steam_id, :fixed64, 1
|
1042
|
+
optional :edeny_reason, :int32, 2
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class CMsgClientAuthList
|
1046
|
+
optional :tokens_left, :uint32, 1
|
1047
|
+
optional :last_request_seq, :uint32, 2
|
1048
|
+
optional :last_request_seq_from_server, :uint32, 3
|
1049
|
+
repeated :tickets, CMsgAuthTicket, 4
|
1050
|
+
repeated :app_ids, :uint32, 5
|
1051
|
+
optional :message_sequence, :uint32, 6
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class CMsgClientAuthListAck
|
1055
|
+
repeated :ticket_crc, :uint32, 1
|
1056
|
+
repeated :app_ids, :uint32, 2
|
1057
|
+
optional :message_sequence, :uint32, 3
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class CMsgClientFriendsList
|
1061
|
+
|
1062
|
+
class Friend
|
1063
|
+
optional :ulfriendid, :fixed64, 1
|
1064
|
+
optional :efriendrelationship, :uint32, 2
|
1065
|
+
end
|
1066
|
+
optional :bincremental, :bool, 1
|
1067
|
+
repeated :friends, CMsgClientFriendsList::Friend, 2
|
1068
|
+
optional :max_friend_count, :uint32, 3
|
1069
|
+
optional :active_friend_count, :uint32, 4
|
1070
|
+
optional :friends_limit_hit, :bool, 5
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class CMsgClientFriendsGroupsList
|
1074
|
+
|
1075
|
+
class FriendGroup
|
1076
|
+
optional :nGroupID, :int32, 1
|
1077
|
+
optional :strGroupName, :string, 2
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class FriendGroupsMembership
|
1081
|
+
optional :ulSteamID, :fixed64, 1
|
1082
|
+
optional :nGroupID, :int32, 2
|
1083
|
+
end
|
1084
|
+
optional :bremoval, :bool, 1
|
1085
|
+
optional :bincremental, :bool, 2
|
1086
|
+
repeated :friendGroups, CMsgClientFriendsGroupsList::FriendGroup, 3
|
1087
|
+
repeated :memberships, CMsgClientFriendsGroupsList::FriendGroupsMembership, 4
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class CMsgClientPlayerNicknameList
|
1091
|
+
|
1092
|
+
class PlayerNickname
|
1093
|
+
optional :steamid, :fixed64, 1
|
1094
|
+
optional :nickname, :string, 3
|
1095
|
+
end
|
1096
|
+
optional :removal, :bool, 1
|
1097
|
+
optional :incremental, :bool, 2
|
1098
|
+
repeated :nicknames, CMsgClientPlayerNicknameList::PlayerNickname, 3
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
class CMsgClientSetPlayerNickname
|
1102
|
+
optional :steamid, :fixed64, 1
|
1103
|
+
optional :nickname, :string, 2
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class CMsgClientSetPlayerNicknameResponse
|
1107
|
+
optional :eresult, :uint32, 1
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class CMsgClientLicenseList
|
1111
|
+
|
1112
|
+
class License
|
1113
|
+
optional :package_id, :uint32, 1
|
1114
|
+
optional :time_created, :fixed32, 2
|
1115
|
+
optional :time_next_process, :fixed32, 3
|
1116
|
+
optional :minute_limit, :int32, 4
|
1117
|
+
optional :minutes_used, :int32, 5
|
1118
|
+
optional :payment_method, :uint32, 6
|
1119
|
+
optional :flags, :uint32, 7
|
1120
|
+
optional :purchase_country_code, :string, 8
|
1121
|
+
optional :license_type, :uint32, 9
|
1122
|
+
optional :territory_code, :int32, 10
|
1123
|
+
optional :change_number, :int32, 11
|
1124
|
+
optional :owner_id, :uint32, 12
|
1125
|
+
optional :initial_period, :uint32, 13
|
1126
|
+
optional :initial_time_unit, :uint32, 14
|
1127
|
+
optional :renewal_period, :uint32, 15
|
1128
|
+
optional :renewal_time_unit, :uint32, 16
|
1129
|
+
end
|
1130
|
+
optional :eresult, :int32, 1, :default => 2
|
1131
|
+
repeated :licenses, CMsgClientLicenseList::License, 2
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class CMsgClientLBSSetScore
|
1135
|
+
optional :app_id, :uint32, 1
|
1136
|
+
optional :leaderboard_id, :int32, 2
|
1137
|
+
optional :score, :int32, 3
|
1138
|
+
optional :details, :bytes, 4
|
1139
|
+
optional :upload_score_method, :int32, 5
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class CMsgClientLBSSetScoreResponse
|
1143
|
+
optional :eresult, :int32, 1, :default => 2
|
1144
|
+
optional :leaderboard_entry_count, :int32, 2
|
1145
|
+
optional :score_changed, :bool, 3
|
1146
|
+
optional :global_rank_previous, :int32, 4
|
1147
|
+
optional :global_rank_new, :int32, 5
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class CMsgClientLBSSetUGC
|
1151
|
+
optional :app_id, :uint32, 1
|
1152
|
+
optional :leaderboard_id, :int32, 2
|
1153
|
+
optional :ugc_id, :fixed64, 3
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class CMsgClientLBSSetUGCResponse
|
1157
|
+
optional :eresult, :int32, 1, :default => 2
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class CMsgClientLBSFindOrCreateLB
|
1161
|
+
optional :app_id, :uint32, 1
|
1162
|
+
optional :leaderboard_sort_method, :int32, 2
|
1163
|
+
optional :leaderboard_display_type, :int32, 3
|
1164
|
+
optional :create_if_not_found, :bool, 4
|
1165
|
+
optional :leaderboard_name, :string, 5
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class CMsgClientLBSFindOrCreateLBResponse
|
1169
|
+
optional :eresult, :int32, 1, :default => 2
|
1170
|
+
optional :leaderboard_id, :int32, 2
|
1171
|
+
optional :leaderboard_entry_count, :int32, 3
|
1172
|
+
optional :leaderboard_sort_method, :int32, 4, :default => 0
|
1173
|
+
optional :leaderboard_display_type, :int32, 5, :default => 0
|
1174
|
+
optional :leaderboard_name, :string, 6
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class CMsgClientLBSGetLBEntries
|
1178
|
+
optional :app_id, :int32, 1
|
1179
|
+
optional :leaderboard_id, :int32, 2
|
1180
|
+
optional :range_start, :int32, 3
|
1181
|
+
optional :range_end, :int32, 4
|
1182
|
+
optional :leaderboard_data_request, :int32, 5
|
1183
|
+
repeated :steamids, :fixed64, 6
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
class CMsgClientLBSGetLBEntriesResponse
|
1187
|
+
|
1188
|
+
class Entry
|
1189
|
+
optional :steam_id_user, :fixed64, 1
|
1190
|
+
optional :global_rank, :int32, 2
|
1191
|
+
optional :score, :int32, 3
|
1192
|
+
optional :details, :bytes, 4
|
1193
|
+
optional :ugc_id, :fixed64, 5
|
1194
|
+
end
|
1195
|
+
optional :eresult, :int32, 1, :default => 2
|
1196
|
+
optional :leaderboard_entry_count, :int32, 2
|
1197
|
+
repeated :entries, CMsgClientLBSGetLBEntriesResponse::Entry, 3
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
class CMsgClientAccountInfo
|
1201
|
+
optional :persona_name, :string, 1
|
1202
|
+
optional :ip_country, :string, 2
|
1203
|
+
optional :count_authed_computers, :int32, 5
|
1204
|
+
optional :account_flags, :uint32, 7
|
1205
|
+
optional :facebook_id, :uint64, 8
|
1206
|
+
optional :facebook_name, :string, 9
|
1207
|
+
optional :steamguard_notify_newmachines, :bool, 14
|
1208
|
+
optional :steamguard_machine_name_user_chosen, :string, 15
|
1209
|
+
optional :is_phone_verified, :bool, 16
|
1210
|
+
optional :two_factor_state, :uint32, 17
|
1211
|
+
optional :is_phone_identifying, :bool, 18
|
1212
|
+
optional :is_phone_needing_reverify, :bool, 19
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class CMsgClientAppMinutesPlayedData
|
1216
|
+
|
1217
|
+
class AppMinutesPlayedData
|
1218
|
+
optional :app_id, :uint32, 1
|
1219
|
+
optional :forever, :int32, 2
|
1220
|
+
optional :last_two_weeks, :int32, 3
|
1221
|
+
end
|
1222
|
+
repeated :minutes_played, CMsgClientAppMinutesPlayedData::AppMinutesPlayedData, 1
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
class CMsgClientIsLimitedAccount
|
1226
|
+
optional :bis_limited_account, :bool, 1
|
1227
|
+
optional :bis_community_banned, :bool, 2
|
1228
|
+
optional :bis_locked_account, :bool, 3
|
1229
|
+
optional :bis_limited_account_allowed_to_invite_friends, :bool, 4
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class CMsgClientRequestFriendData
|
1233
|
+
optional :persona_state_requested, :uint32, 1
|
1234
|
+
repeated :friends, :fixed64, 2
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class CMsgClientChangeStatus
|
1238
|
+
optional :persona_state, :uint32, 1
|
1239
|
+
optional :player_name, :string, 2
|
1240
|
+
optional :is_auto_generated_name, :bool, 3
|
1241
|
+
optional :high_priority, :bool, 4
|
1242
|
+
optional :persona_set_by_user, :bool, 5
|
1243
|
+
optional :persona_state_flags, :uint32, 6, :default => 0
|
1244
|
+
end
|
1245
|
+
|
1246
|
+
class CMsgPersonaChangeResponse
|
1247
|
+
optional :result, :uint32, 1
|
1248
|
+
optional :player_name, :string, 2
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
class CMsgClientPersonaState
|
1252
|
+
|
1253
|
+
class Friend
|
1254
|
+
optional :friendid, :fixed64, 1
|
1255
|
+
optional :persona_state, :uint32, 2
|
1256
|
+
optional :game_played_app_id, :uint32, 3
|
1257
|
+
optional :game_server_ip, :uint32, 4
|
1258
|
+
optional :game_server_port, :uint32, 5
|
1259
|
+
optional :persona_state_flags, :uint32, 6
|
1260
|
+
optional :online_session_instances, :uint32, 7
|
1261
|
+
optional :published_instance_id, :uint32, 8
|
1262
|
+
optional :persona_set_by_user, :bool, 10
|
1263
|
+
optional :player_name, :string, 15
|
1264
|
+
optional :query_port, :uint32, 20
|
1265
|
+
optional :steamid_source, :fixed64, 25
|
1266
|
+
optional :avatar_hash, :bytes, 31
|
1267
|
+
optional :last_logoff, :uint32, 45
|
1268
|
+
optional :last_logon, :uint32, 46
|
1269
|
+
optional :clan_rank, :uint32, 50
|
1270
|
+
optional :game_name, :string, 55
|
1271
|
+
optional :gameid, :fixed64, 56
|
1272
|
+
optional :game_data_blob, :bytes, 60
|
1273
|
+
optional :clan_tag, :string, 65
|
1274
|
+
optional :facebook_name, :string, 66
|
1275
|
+
optional :facebook_id, :uint64, 67
|
1276
|
+
end
|
1277
|
+
optional :status_flags, :uint32, 1
|
1278
|
+
repeated :friends, CMsgClientPersonaState::Friend, 2
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
class CMsgClientFriendProfileInfo
|
1282
|
+
optional :steamid_friend, :fixed64, 1
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
class CMsgClientFriendProfileInfoResponse
|
1286
|
+
optional :eresult, :int32, 1, :default => 2
|
1287
|
+
optional :steamid_friend, :fixed64, 2
|
1288
|
+
optional :time_created, :uint32, 3
|
1289
|
+
optional :real_name, :string, 4
|
1290
|
+
optional :city_name, :string, 5
|
1291
|
+
optional :state_name, :string, 6
|
1292
|
+
optional :country_name, :string, 7
|
1293
|
+
optional :headline, :string, 8
|
1294
|
+
optional :summary, :string, 9
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
class CMsgClientServerList
|
1298
|
+
|
1299
|
+
class Server
|
1300
|
+
optional :server_type, :uint32, 1
|
1301
|
+
optional :server_ip, :uint32, 2
|
1302
|
+
optional :server_port, :uint32, 3
|
1303
|
+
end
|
1304
|
+
repeated :servers, CMsgClientServerList::Server, 1
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
class CMsgClientRequestedClientStats
|
1308
|
+
|
1309
|
+
class StatsToSend
|
1310
|
+
optional :client_stat, :uint32, 1
|
1311
|
+
optional :stat_aggregate_method, :uint32, 2
|
1312
|
+
end
|
1313
|
+
repeated :stats_to_send, CMsgClientRequestedClientStats::StatsToSend, 1
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
class CMsgClientStat2
|
1317
|
+
|
1318
|
+
class StatDetail
|
1319
|
+
optional :client_stat, :uint32, 1
|
1320
|
+
optional :ll_value, :int64, 2
|
1321
|
+
optional :time_of_day, :uint32, 3
|
1322
|
+
optional :cell_id, :uint32, 4
|
1323
|
+
optional :depot_id, :uint32, 5
|
1324
|
+
optional :app_id, :uint32, 6
|
1325
|
+
end
|
1326
|
+
repeated :stat_detail, CMsgClientStat2::StatDetail, 1
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class CMsgClientMMSCreateLobby
|
1330
|
+
optional :app_id, :uint32, 1
|
1331
|
+
optional :max_members, :int32, 2
|
1332
|
+
optional :lobby_type, :int32, 3
|
1333
|
+
optional :lobby_flags, :int32, 4
|
1334
|
+
optional :cell_id, :uint32, 5
|
1335
|
+
optional :public_ip, :uint32, 6
|
1336
|
+
optional :metadata, :bytes, 7
|
1337
|
+
optional :persona_name_owner, :string, 8
|
1338
|
+
end
|
1339
|
+
|
1340
|
+
class CMsgClientMMSCreateLobbyResponse
|
1341
|
+
optional :app_id, :uint32, 1
|
1342
|
+
optional :steam_id_lobby, :fixed64, 2
|
1343
|
+
optional :eresult, :int32, 3, :default => 2
|
1344
|
+
end
|
1345
|
+
|
1346
|
+
class CMsgClientMMSJoinLobby
|
1347
|
+
optional :app_id, :uint32, 1
|
1348
|
+
optional :steam_id_lobby, :fixed64, 2
|
1349
|
+
optional :persona_name, :string, 3
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
class CMsgClientMMSJoinLobbyResponse
|
1353
|
+
|
1354
|
+
class Member
|
1355
|
+
optional :steam_id, :fixed64, 1
|
1356
|
+
optional :persona_name, :string, 2
|
1357
|
+
optional :metadata, :bytes, 3
|
1358
|
+
end
|
1359
|
+
optional :app_id, :uint32, 1
|
1360
|
+
optional :steam_id_lobby, :fixed64, 2
|
1361
|
+
optional :chat_room_enter_response, :int32, 3
|
1362
|
+
optional :max_members, :int32, 4
|
1363
|
+
optional :lobby_type, :int32, 5
|
1364
|
+
optional :lobby_flags, :int32, 6
|
1365
|
+
optional :steam_id_owner, :fixed64, 7
|
1366
|
+
optional :metadata, :bytes, 8
|
1367
|
+
repeated :members, CMsgClientMMSJoinLobbyResponse::Member, 9
|
1368
|
+
end
|
1369
|
+
|
1370
|
+
class CMsgClientMMSLeaveLobby
|
1371
|
+
optional :app_id, :uint32, 1
|
1372
|
+
optional :steam_id_lobby, :fixed64, 2
|
1373
|
+
end
|
1374
|
+
|
1375
|
+
class CMsgClientMMSLeaveLobbyResponse
|
1376
|
+
optional :app_id, :uint32, 1
|
1377
|
+
optional :steam_id_lobby, :fixed64, 2
|
1378
|
+
optional :eresult, :int32, 3, :default => 2
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
class CMsgClientMMSGetLobbyList
|
1382
|
+
|
1383
|
+
class Filter
|
1384
|
+
optional :key, :string, 1
|
1385
|
+
optional :value, :string, 2
|
1386
|
+
optional :comparision, :int32, 3
|
1387
|
+
optional :filter_type, :int32, 4
|
1388
|
+
end
|
1389
|
+
optional :app_id, :uint32, 1
|
1390
|
+
optional :num_lobbies_requested, :int32, 3
|
1391
|
+
optional :cell_id, :uint32, 4
|
1392
|
+
optional :public_ip, :uint32, 5
|
1393
|
+
repeated :filters, CMsgClientMMSGetLobbyList::Filter, 6
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
class CMsgClientMMSGetLobbyListResponse
|
1397
|
+
|
1398
|
+
class Lobby
|
1399
|
+
optional :steam_id, :fixed64, 1
|
1400
|
+
optional :max_members, :int32, 2
|
1401
|
+
optional :lobby_type, :int32, 3
|
1402
|
+
optional :lobby_flags, :int32, 4
|
1403
|
+
optional :metadata, :bytes, 5
|
1404
|
+
optional :num_members, :int32, 6
|
1405
|
+
optional :distance, :float, 7
|
1406
|
+
optional :weight, :int64, 8
|
1407
|
+
end
|
1408
|
+
optional :app_id, :uint32, 1
|
1409
|
+
optional :eresult, :int32, 3, :default => 2
|
1410
|
+
repeated :lobbies, CMsgClientMMSGetLobbyListResponse::Lobby, 4
|
1411
|
+
end
|
1412
|
+
|
1413
|
+
class CMsgClientMMSSetLobbyData
|
1414
|
+
optional :app_id, :uint32, 1
|
1415
|
+
optional :steam_id_lobby, :fixed64, 2
|
1416
|
+
optional :steam_id_member, :fixed64, 3
|
1417
|
+
optional :max_members, :int32, 4
|
1418
|
+
optional :lobby_type, :int32, 5
|
1419
|
+
optional :lobby_flags, :int32, 6
|
1420
|
+
optional :metadata, :bytes, 7
|
1421
|
+
end
|
1422
|
+
|
1423
|
+
class CMsgClientMMSSetLobbyDataResponse
|
1424
|
+
optional :app_id, :uint32, 1
|
1425
|
+
optional :steam_id_lobby, :fixed64, 2
|
1426
|
+
optional :eresult, :int32, 3, :default => 2
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
class CMsgClientMMSGetLobbyData
|
1430
|
+
optional :app_id, :uint32, 1
|
1431
|
+
optional :steam_id_lobby, :fixed64, 2
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
class CMsgClientMMSLobbyData
|
1435
|
+
|
1436
|
+
class Member
|
1437
|
+
optional :steam_id, :fixed64, 1
|
1438
|
+
optional :persona_name, :string, 2
|
1439
|
+
optional :metadata, :bytes, 3
|
1440
|
+
end
|
1441
|
+
optional :app_id, :uint32, 1
|
1442
|
+
optional :steam_id_lobby, :fixed64, 2
|
1443
|
+
optional :num_members, :int32, 3
|
1444
|
+
optional :max_members, :int32, 4
|
1445
|
+
optional :lobby_type, :int32, 5
|
1446
|
+
optional :lobby_flags, :int32, 6
|
1447
|
+
optional :steam_id_owner, :fixed64, 7
|
1448
|
+
optional :metadata, :bytes, 8
|
1449
|
+
repeated :members, CMsgClientMMSLobbyData::Member, 9
|
1450
|
+
optional :lobby_cellid, :uint32, 10
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
class CMsgClientMMSSendLobbyChatMsg
|
1454
|
+
optional :app_id, :uint32, 1
|
1455
|
+
optional :steam_id_lobby, :fixed64, 2
|
1456
|
+
optional :steam_id_target, :fixed64, 3
|
1457
|
+
optional :lobby_message, :bytes, 4
|
1458
|
+
end
|
1459
|
+
|
1460
|
+
class CMsgClientMMSLobbyChatMsg
|
1461
|
+
optional :app_id, :uint32, 1
|
1462
|
+
optional :steam_id_lobby, :fixed64, 2
|
1463
|
+
optional :steam_id_sender, :fixed64, 3
|
1464
|
+
optional :lobby_message, :bytes, 4
|
1465
|
+
end
|
1466
|
+
|
1467
|
+
class CMsgClientMMSSetLobbyOwner
|
1468
|
+
optional :app_id, :uint32, 1
|
1469
|
+
optional :steam_id_lobby, :fixed64, 2
|
1470
|
+
optional :steam_id_new_owner, :fixed64, 3
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
class CMsgClientMMSSetLobbyOwnerResponse
|
1474
|
+
optional :app_id, :uint32, 1
|
1475
|
+
optional :steam_id_lobby, :fixed64, 2
|
1476
|
+
optional :eresult, :int32, 3, :default => 2
|
1477
|
+
end
|
1478
|
+
|
1479
|
+
class CMsgClientMMSSetLobbyLinked
|
1480
|
+
optional :app_id, :uint32, 1
|
1481
|
+
optional :steam_id_lobby, :fixed64, 2
|
1482
|
+
optional :steam_id_lobby2, :fixed64, 3
|
1483
|
+
end
|
1484
|
+
|
1485
|
+
class CMsgClientMMSSetLobbyGameServer
|
1486
|
+
optional :app_id, :uint32, 1
|
1487
|
+
optional :steam_id_lobby, :fixed64, 2
|
1488
|
+
optional :game_server_ip, :uint32, 3
|
1489
|
+
optional :game_server_port, :uint32, 4
|
1490
|
+
optional :game_server_steam_id, :fixed64, 5
|
1491
|
+
end
|
1492
|
+
|
1493
|
+
class CMsgClientMMSLobbyGameServerSet
|
1494
|
+
optional :app_id, :uint32, 1
|
1495
|
+
optional :steam_id_lobby, :fixed64, 2
|
1496
|
+
optional :game_server_ip, :uint32, 3
|
1497
|
+
optional :game_server_port, :uint32, 4
|
1498
|
+
optional :game_server_steam_id, :fixed64, 5
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
class CMsgClientMMSUserJoinedLobby
|
1502
|
+
optional :app_id, :uint32, 1
|
1503
|
+
optional :steam_id_lobby, :fixed64, 2
|
1504
|
+
optional :steam_id_user, :fixed64, 3
|
1505
|
+
optional :persona_name, :string, 4
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
class CMsgClientMMSUserLeftLobby
|
1509
|
+
optional :app_id, :uint32, 1
|
1510
|
+
optional :steam_id_lobby, :fixed64, 2
|
1511
|
+
optional :steam_id_user, :fixed64, 3
|
1512
|
+
optional :persona_name, :string, 4
|
1513
|
+
end
|
1514
|
+
|
1515
|
+
class CMsgClientMMSInviteToLobby
|
1516
|
+
optional :app_id, :uint32, 1
|
1517
|
+
optional :steam_id_lobby, :fixed64, 2
|
1518
|
+
optional :steam_id_user_invited, :fixed64, 3
|
1519
|
+
end
|
1520
|
+
|
1521
|
+
class CMsgClientUDSInviteToGame
|
1522
|
+
optional :steam_id_dest, :fixed64, 1
|
1523
|
+
optional :steam_id_src, :fixed64, 2
|
1524
|
+
optional :connect_string, :string, 3
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
class CMsgClientChatInvite
|
1528
|
+
optional :steam_id_invited, :fixed64, 1
|
1529
|
+
optional :steam_id_chat, :fixed64, 2
|
1530
|
+
optional :steam_id_patron, :fixed64, 3
|
1531
|
+
optional :chatroom_type, :int32, 4
|
1532
|
+
optional :steam_id_friend_chat, :fixed64, 5
|
1533
|
+
optional :chat_name, :string, 6
|
1534
|
+
optional :game_id, :fixed64, 7
|
1535
|
+
end
|
1536
|
+
|
1537
|
+
class CMsgClientConnectionStats
|
1538
|
+
|
1539
|
+
class Stats_Logon
|
1540
|
+
optional :connect_attempts, :int32, 1
|
1541
|
+
optional :connect_successes, :int32, 2
|
1542
|
+
optional :connect_failures, :int32, 3
|
1543
|
+
optional :connections_dropped, :int32, 4
|
1544
|
+
optional :seconds_running, :uint32, 5
|
1545
|
+
optional :msec_tologonthistime, :uint32, 6
|
1546
|
+
optional :count_bad_cms, :uint32, 7
|
1547
|
+
end
|
1548
|
+
|
1549
|
+
class Stats_UDP
|
1550
|
+
optional :pkts_sent, :uint64, 1
|
1551
|
+
optional :bytes_sent, :uint64, 2
|
1552
|
+
optional :pkts_recv, :uint64, 3
|
1553
|
+
optional :pkts_processed, :uint64, 4
|
1554
|
+
optional :bytes_recv, :uint64, 5
|
1555
|
+
end
|
1556
|
+
|
1557
|
+
class Stats_VConn
|
1558
|
+
optional :connections_udp, :uint32, 1
|
1559
|
+
optional :connections_tcp, :uint32, 2
|
1560
|
+
optional :stats_udp, CMsgClientConnectionStats::Stats_UDP, 3
|
1561
|
+
optional :pkts_abandoned, :uint64, 4
|
1562
|
+
optional :conn_req_received, :uint64, 5
|
1563
|
+
optional :pkts_resent, :uint64, 6
|
1564
|
+
optional :msgs_sent, :uint64, 7
|
1565
|
+
optional :msgs_sent_failed, :uint64, 8
|
1566
|
+
optional :msgs_recv, :uint64, 9
|
1567
|
+
optional :datagrams_sent, :uint64, 10
|
1568
|
+
optional :datagrams_recv, :uint64, 11
|
1569
|
+
optional :bad_pkts_recv, :uint64, 12
|
1570
|
+
optional :unknown_conn_pkts_recv, :uint64, 13
|
1571
|
+
optional :missed_pkts_recv, :uint64, 14
|
1572
|
+
optional :dup_pkts_recv, :uint64, 15
|
1573
|
+
optional :failed_connect_challenges, :uint64, 16
|
1574
|
+
optional :micro_sec_avg_latency, :uint32, 17
|
1575
|
+
optional :micro_sec_min_latency, :uint32, 18
|
1576
|
+
optional :micro_sec_max_latency, :uint32, 19
|
1577
|
+
optional :mem_pool_msg_in_use, :uint32, 20
|
1578
|
+
end
|
1579
|
+
optional :stats_logon, CMsgClientConnectionStats::Stats_Logon, 1
|
1580
|
+
optional :stats_vconn, CMsgClientConnectionStats::Stats_VConn, 2
|
1581
|
+
end
|
1582
|
+
|
1583
|
+
class CMsgClientServersAvailable
|
1584
|
+
|
1585
|
+
class Server_Types_Available
|
1586
|
+
optional :server, :uint32, 1
|
1587
|
+
optional :changed, :bool, 2
|
1588
|
+
end
|
1589
|
+
repeated :server_types_available, CMsgClientServersAvailable::Server_Types_Available, 1
|
1590
|
+
optional :server_type_for_auth_services, :uint32, 2
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
class CMsgClientGetUserStats
|
1594
|
+
optional :game_id, :fixed64, 1
|
1595
|
+
optional :crc_stats, :uint32, 2
|
1596
|
+
optional :schema_local_version, :int32, 3
|
1597
|
+
optional :steam_id_for_user, :fixed64, 4
|
1598
|
+
end
|
1599
|
+
|
1600
|
+
class CMsgClientGetUserStatsResponse
|
1601
|
+
|
1602
|
+
class Stats
|
1603
|
+
optional :stat_id, :uint32, 1
|
1604
|
+
optional :stat_value, :uint32, 2
|
1605
|
+
end
|
1606
|
+
|
1607
|
+
class Achievement_Blocks
|
1608
|
+
optional :achievement_id, :uint32, 1
|
1609
|
+
repeated :unlock_time, :fixed32, 2
|
1610
|
+
end
|
1611
|
+
optional :game_id, :fixed64, 1
|
1612
|
+
optional :eresult, :int32, 2, :default => 2
|
1613
|
+
optional :crc_stats, :uint32, 3
|
1614
|
+
optional :schema, :bytes, 4
|
1615
|
+
repeated :stats, CMsgClientGetUserStatsResponse::Stats, 5
|
1616
|
+
repeated :achievement_blocks, CMsgClientGetUserStatsResponse::Achievement_Blocks, 6
|
1617
|
+
end
|
1618
|
+
|
1619
|
+
class CMsgClientStoreUserStatsResponse
|
1620
|
+
|
1621
|
+
class Stats_Failed_Validation
|
1622
|
+
optional :stat_id, :uint32, 1
|
1623
|
+
optional :reverted_stat_value, :uint32, 2
|
1624
|
+
end
|
1625
|
+
optional :game_id, :fixed64, 1
|
1626
|
+
optional :eresult, :int32, 2, :default => 2
|
1627
|
+
optional :crc_stats, :uint32, 3
|
1628
|
+
repeated :stats_failed_validation, CMsgClientStoreUserStatsResponse::Stats_Failed_Validation, 4
|
1629
|
+
optional :stats_out_of_date, :bool, 5
|
1630
|
+
end
|
1631
|
+
|
1632
|
+
class CMsgClientStoreUserStats2
|
1633
|
+
|
1634
|
+
class Stats
|
1635
|
+
optional :stat_id, :uint32, 1
|
1636
|
+
optional :stat_value, :uint32, 2
|
1637
|
+
end
|
1638
|
+
optional :game_id, :fixed64, 1
|
1639
|
+
optional :settor_steam_id, :fixed64, 2
|
1640
|
+
optional :settee_steam_id, :fixed64, 3
|
1641
|
+
optional :crc_stats, :uint32, 4
|
1642
|
+
optional :explicit_reset, :bool, 5
|
1643
|
+
repeated :stats, CMsgClientStoreUserStats2::Stats, 6
|
1644
|
+
end
|
1645
|
+
|
1646
|
+
class CMsgClientStatsUpdated
|
1647
|
+
|
1648
|
+
class Updated_Stats
|
1649
|
+
optional :stat_id, :uint32, 1
|
1650
|
+
optional :stat_value, :uint32, 2
|
1651
|
+
end
|
1652
|
+
optional :steam_id, :fixed64, 1
|
1653
|
+
optional :game_id, :fixed64, 2
|
1654
|
+
optional :crc_stats, :uint32, 3
|
1655
|
+
repeated :updated_stats, CMsgClientStatsUpdated::Updated_Stats, 4
|
1656
|
+
end
|
1657
|
+
|
1658
|
+
class CMsgClientStoreUserStats
|
1659
|
+
|
1660
|
+
class Stats_To_Store
|
1661
|
+
optional :stat_id, :uint32, 1
|
1662
|
+
optional :stat_value, :uint32, 2
|
1663
|
+
end
|
1664
|
+
optional :game_id, :fixed64, 1
|
1665
|
+
optional :explicit_reset, :bool, 2
|
1666
|
+
repeated :stats_to_store, CMsgClientStoreUserStats::Stats_To_Store, 3
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
class CMsgClientGetClientDetails
|
1670
|
+
end
|
1671
|
+
|
1672
|
+
class CMsgClientReportOverlayDetourFailure
|
1673
|
+
repeated :failure_strings, :string, 1
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
class CMsgClientGetClientDetailsResponse
|
1677
|
+
|
1678
|
+
class Game
|
1679
|
+
optional :appid, :uint32, 1
|
1680
|
+
optional :extra_info, :string, 2
|
1681
|
+
optional :time_running_sec, :uint32, 3
|
1682
|
+
end
|
1683
|
+
optional :package_version, :uint32, 1
|
1684
|
+
optional :protocol_version, :uint32, 8
|
1685
|
+
optional :os, :string, 2
|
1686
|
+
optional :machine_name, :string, 3
|
1687
|
+
optional :ip_public, :string, 4
|
1688
|
+
optional :ip_private, :string, 5
|
1689
|
+
optional :bytes_available, :uint64, 7
|
1690
|
+
repeated :games_running, CMsgClientGetClientDetailsResponse::Game, 6
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
class CMsgClientGetClientAppList
|
1694
|
+
optional :media, :bool, 1
|
1695
|
+
optional :tools, :bool, 2
|
1696
|
+
optional :games, :bool, 3
|
1697
|
+
optional :only_installed, :bool, 4
|
1698
|
+
optional :only_changing, :bool, 5
|
1699
|
+
end
|
1700
|
+
|
1701
|
+
class CMsgClientGetClientAppListResponse
|
1702
|
+
|
1703
|
+
class App
|
1704
|
+
|
1705
|
+
class DLC
|
1706
|
+
optional :appid, :uint32, 1
|
1707
|
+
optional :installed, :bool, 2
|
1708
|
+
end
|
1709
|
+
optional :appid, :uint32, 1
|
1710
|
+
optional :category, :string, 2
|
1711
|
+
optional :app_type, :string, 10
|
1712
|
+
optional :favorite, :bool, 3
|
1713
|
+
optional :installed, :bool, 4
|
1714
|
+
optional :auto_update, :bool, 5
|
1715
|
+
optional :bytes_downloaded, :uint64, 6
|
1716
|
+
optional :bytes_needed, :uint64, 7
|
1717
|
+
optional :bytes_download_rate, :uint32, 8
|
1718
|
+
optional :download_paused, :bool, 11
|
1719
|
+
optional :num_downloading, :uint32, 12
|
1720
|
+
optional :num_paused, :uint32, 13
|
1721
|
+
optional :changing, :bool, 14
|
1722
|
+
optional :available_on_platform, :bool, 15
|
1723
|
+
repeated :dlcs, CMsgClientGetClientAppListResponse::App::DLC, 9
|
1724
|
+
end
|
1725
|
+
repeated :apps, CMsgClientGetClientAppListResponse::App, 1
|
1726
|
+
optional :bytes_available, :uint64, 2
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
class CMsgClientInstallClientApp
|
1730
|
+
optional :appid, :uint32, 1
|
1731
|
+
end
|
1732
|
+
|
1733
|
+
class CMsgClientInstallClientAppResponse
|
1734
|
+
optional :result, :uint32, 1
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
class CMsgClientUninstallClientApp
|
1738
|
+
optional :appid, :uint32, 1
|
1739
|
+
end
|
1740
|
+
|
1741
|
+
class CMsgClientUninstallClientAppResponse
|
1742
|
+
optional :result, :uint32, 1
|
1743
|
+
end
|
1744
|
+
|
1745
|
+
class CMsgClientSetClientAppUpdateState
|
1746
|
+
optional :appid, :uint32, 1
|
1747
|
+
optional :update, :bool, 2
|
1748
|
+
end
|
1749
|
+
|
1750
|
+
class CMsgClientSetClientAppUpdateStateResponse
|
1751
|
+
optional :result, :uint32, 1
|
1752
|
+
end
|
1753
|
+
|
1754
|
+
class CMsgClientUFSUploadFileRequest
|
1755
|
+
optional :app_id, :uint32, 1
|
1756
|
+
optional :file_size, :uint32, 2
|
1757
|
+
optional :raw_file_size, :uint32, 3
|
1758
|
+
optional :sha_file, :bytes, 4
|
1759
|
+
optional :time_stamp, :uint64, 5
|
1760
|
+
optional :file_name, :string, 6
|
1761
|
+
optional :platforms_to_sync_deprecated, :uint32, 7
|
1762
|
+
optional :platforms_to_sync, :uint32, 8, :default => 4294967295
|
1763
|
+
optional :cell_id, :uint32, 9
|
1764
|
+
optional :can_encrypt, :bool, 10
|
1765
|
+
end
|
1766
|
+
|
1767
|
+
class CMsgClientUFSUploadFileResponse
|
1768
|
+
optional :eresult, :int32, 1, :default => 2
|
1769
|
+
optional :sha_file, :bytes, 2
|
1770
|
+
optional :use_http, :bool, 3
|
1771
|
+
optional :http_host, :string, 4
|
1772
|
+
optional :http_url, :string, 5
|
1773
|
+
optional :kv_headers, :bytes, 6
|
1774
|
+
optional :use_https, :bool, 7
|
1775
|
+
optional :encrypt_file, :bool, 8
|
1776
|
+
end
|
1777
|
+
|
1778
|
+
class CMsgClientUFSUploadCommit
|
1779
|
+
|
1780
|
+
class File
|
1781
|
+
optional :eresult, :int32, 1, :default => 2
|
1782
|
+
optional :app_id, :uint32, 2
|
1783
|
+
optional :sha_file, :bytes, 3
|
1784
|
+
optional :cub_file, :uint32, 4
|
1785
|
+
optional :file_name, :string, 5
|
1786
|
+
end
|
1787
|
+
repeated :files, CMsgClientUFSUploadCommit::File, 1
|
1788
|
+
end
|
1789
|
+
|
1790
|
+
class CMsgClientUFSUploadCommitResponse
|
1791
|
+
|
1792
|
+
class File
|
1793
|
+
optional :eresult, :int32, 1, :default => 2
|
1794
|
+
optional :app_id, :uint32, 2
|
1795
|
+
optional :sha_file, :bytes, 3
|
1796
|
+
end
|
1797
|
+
repeated :files, CMsgClientUFSUploadCommitResponse::File, 1
|
1798
|
+
end
|
1799
|
+
|
1800
|
+
class CMsgClientUFSFileChunk
|
1801
|
+
optional :sha_file, :bytes, 1
|
1802
|
+
optional :file_start, :uint32, 2
|
1803
|
+
optional :data, :bytes, 3
|
1804
|
+
end
|
1805
|
+
|
1806
|
+
class CMsgClientUFSTransferHeartbeat
|
1807
|
+
end
|
1808
|
+
|
1809
|
+
class CMsgClientUFSUploadFileFinished
|
1810
|
+
optional :eresult, :int32, 1, :default => 2
|
1811
|
+
optional :sha_file, :bytes, 2
|
1812
|
+
end
|
1813
|
+
|
1814
|
+
class CMsgClientUFSDeleteFileRequest
|
1815
|
+
optional :app_id, :uint32, 1
|
1816
|
+
optional :file_name, :string, 2
|
1817
|
+
optional :is_explicit_delete, :bool, 3
|
1818
|
+
end
|
1819
|
+
|
1820
|
+
class CMsgClientUFSDeleteFileResponse
|
1821
|
+
optional :eresult, :int32, 1, :default => 2
|
1822
|
+
optional :file_name, :string, 2
|
1823
|
+
end
|
1824
|
+
|
1825
|
+
class CMsgClientUFSGetFileListForApp
|
1826
|
+
repeated :apps_to_query, :uint32, 1
|
1827
|
+
optional :send_path_prefixes, :bool, 2
|
1828
|
+
end
|
1829
|
+
|
1830
|
+
class CMsgClientUFSGetFileListForAppResponse
|
1831
|
+
|
1832
|
+
class File
|
1833
|
+
optional :app_id, :uint32, 1
|
1834
|
+
optional :file_name, :string, 2
|
1835
|
+
optional :sha_file, :bytes, 3
|
1836
|
+
optional :time_stamp, :uint64, 4
|
1837
|
+
optional :raw_file_size, :uint32, 5
|
1838
|
+
optional :is_explicit_delete, :bool, 6
|
1839
|
+
optional :platforms_to_sync, :uint32, 7
|
1840
|
+
optional :path_prefix_index, :uint32, 8
|
1841
|
+
end
|
1842
|
+
repeated :files, CMsgClientUFSGetFileListForAppResponse::File, 1
|
1843
|
+
repeated :path_prefixes, :string, 2
|
1844
|
+
end
|
1845
|
+
|
1846
|
+
class CMsgClientUFSDownloadRequest
|
1847
|
+
optional :app_id, :uint32, 1
|
1848
|
+
optional :file_name, :string, 2
|
1849
|
+
optional :can_handle_http, :bool, 3
|
1850
|
+
end
|
1851
|
+
|
1852
|
+
class CMsgClientUFSDownloadResponse
|
1853
|
+
optional :eresult, :int32, 1, :default => 2
|
1854
|
+
optional :app_id, :uint32, 2
|
1855
|
+
optional :file_size, :uint32, 3
|
1856
|
+
optional :raw_file_size, :uint32, 4
|
1857
|
+
optional :sha_file, :bytes, 5
|
1858
|
+
optional :time_stamp, :uint64, 6
|
1859
|
+
optional :is_explicit_delete, :bool, 7
|
1860
|
+
optional :use_http, :bool, 8
|
1861
|
+
optional :http_host, :string, 9
|
1862
|
+
optional :http_url, :string, 10
|
1863
|
+
optional :kv_headers, :bytes, 11
|
1864
|
+
optional :use_https, :bool, 12
|
1865
|
+
optional :encrypted, :bool, 13
|
1866
|
+
end
|
1867
|
+
|
1868
|
+
class CMsgClientUFSLoginRequest
|
1869
|
+
optional :protocol_version, :uint32, 1
|
1870
|
+
optional :am_session_token, :uint64, 2
|
1871
|
+
repeated :apps, :uint32, 3
|
1872
|
+
end
|
1873
|
+
|
1874
|
+
class CMsgClientUFSLoginResponse
|
1875
|
+
optional :eresult, :int32, 1, :default => 2
|
1876
|
+
end
|
1877
|
+
|
1878
|
+
class CMsgClientRequestEncryptedAppTicket
|
1879
|
+
optional :app_id, :uint32, 1
|
1880
|
+
optional :userdata, :bytes, 2
|
1881
|
+
end
|
1882
|
+
|
1883
|
+
class CMsgClientRequestEncryptedAppTicketResponse
|
1884
|
+
optional :app_id, :uint32, 1
|
1885
|
+
optional :eresult, :int32, 2, :default => 2
|
1886
|
+
optional :encrypted_app_ticket, EncryptedAppTicket, 3
|
1887
|
+
end
|
1888
|
+
|
1889
|
+
class CMsgClientWalletInfoUpdate
|
1890
|
+
optional :has_wallet, :bool, 1
|
1891
|
+
optional :balance, :int32, 2
|
1892
|
+
optional :currency, :int32, 3
|
1893
|
+
optional :balance_delayed, :int32, 4
|
1894
|
+
end
|
1895
|
+
|
1896
|
+
class CMsgClientAppInfoUpdate
|
1897
|
+
optional :last_changenumber, :uint32, 1
|
1898
|
+
optional :send_changelist, :bool, 2
|
1899
|
+
end
|
1900
|
+
|
1901
|
+
class CMsgClientAppInfoChanges
|
1902
|
+
optional :current_change_number, :uint32, 1
|
1903
|
+
optional :force_full_update, :bool, 2
|
1904
|
+
repeated :appIDs, :uint32, 3
|
1905
|
+
end
|
1906
|
+
|
1907
|
+
class CMsgClientAppInfoRequest
|
1908
|
+
|
1909
|
+
class App
|
1910
|
+
optional :app_id, :uint32, 1
|
1911
|
+
optional :section_flags, :uint32, 2
|
1912
|
+
repeated :section_CRC, :uint32, 3
|
1913
|
+
end
|
1914
|
+
repeated :apps, CMsgClientAppInfoRequest::App, 1
|
1915
|
+
optional :supports_batches, :bool, 2, :default => false
|
1916
|
+
end
|
1917
|
+
|
1918
|
+
class CMsgClientAppInfoResponse
|
1919
|
+
|
1920
|
+
class App
|
1921
|
+
|
1922
|
+
class Section
|
1923
|
+
optional :section_id, :uint32, 1
|
1924
|
+
optional :section_kv, :bytes, 2
|
1925
|
+
end
|
1926
|
+
optional :app_id, :uint32, 1
|
1927
|
+
optional :change_number, :uint32, 2
|
1928
|
+
repeated :sections, CMsgClientAppInfoResponse::App::Section, 3
|
1929
|
+
end
|
1930
|
+
repeated :apps, CMsgClientAppInfoResponse::App, 1
|
1931
|
+
repeated :apps_unknown, :uint32, 2
|
1932
|
+
optional :apps_pending, :uint32, 3
|
1933
|
+
end
|
1934
|
+
|
1935
|
+
class CMsgClientPackageInfoRequest
|
1936
|
+
repeated :package_ids, :uint32, 1
|
1937
|
+
optional :meta_data_only, :bool, 2
|
1938
|
+
end
|
1939
|
+
|
1940
|
+
class CMsgClientPackageInfoResponse
|
1941
|
+
|
1942
|
+
class Package
|
1943
|
+
optional :package_id, :uint32, 1
|
1944
|
+
optional :change_number, :uint32, 2
|
1945
|
+
optional :sha, :bytes, 3
|
1946
|
+
optional :buffer, :bytes, 4
|
1947
|
+
end
|
1948
|
+
repeated :packages, CMsgClientPackageInfoResponse::Package, 1
|
1949
|
+
repeated :packages_unknown, :uint32, 2
|
1950
|
+
optional :packages_pending, :uint32, 3
|
1951
|
+
end
|
1952
|
+
|
1953
|
+
class CMsgClientPICSChangesSinceRequest
|
1954
|
+
optional :since_change_number, :uint32, 1
|
1955
|
+
optional :send_app_info_changes, :bool, 2
|
1956
|
+
optional :send_package_info_changes, :bool, 3
|
1957
|
+
optional :num_app_info_cached, :uint32, 4
|
1958
|
+
optional :num_package_info_cached, :uint32, 5
|
1959
|
+
end
|
1960
|
+
|
1961
|
+
class CMsgClientPICSChangesSinceResponse
|
1962
|
+
|
1963
|
+
class PackageChange
|
1964
|
+
optional :packageid, :uint32, 1
|
1965
|
+
optional :change_number, :uint32, 2
|
1966
|
+
optional :needs_token, :bool, 3
|
1967
|
+
end
|
1968
|
+
|
1969
|
+
class AppChange
|
1970
|
+
optional :appid, :uint32, 1
|
1971
|
+
optional :change_number, :uint32, 2
|
1972
|
+
optional :needs_token, :bool, 3
|
1973
|
+
end
|
1974
|
+
optional :current_change_number, :uint32, 1
|
1975
|
+
optional :since_change_number, :uint32, 2
|
1976
|
+
optional :force_full_update, :bool, 3
|
1977
|
+
repeated :package_changes, CMsgClientPICSChangesSinceResponse::PackageChange, 4
|
1978
|
+
repeated :app_changes, CMsgClientPICSChangesSinceResponse::AppChange, 5
|
1979
|
+
optional :force_full_app_update, :bool, 6
|
1980
|
+
optional :force_full_package_update, :bool, 7
|
1981
|
+
end
|
1982
|
+
|
1983
|
+
class CMsgClientPICSProductInfoRequest
|
1984
|
+
|
1985
|
+
class AppInfo
|
1986
|
+
optional :appid, :uint32, 1
|
1987
|
+
optional :access_token, :uint64, 2
|
1988
|
+
optional :only_public, :bool, 3
|
1989
|
+
end
|
1990
|
+
|
1991
|
+
class PackageInfo
|
1992
|
+
optional :packageid, :uint32, 1
|
1993
|
+
optional :access_token, :uint64, 2
|
1994
|
+
end
|
1995
|
+
repeated :packages, CMsgClientPICSProductInfoRequest::PackageInfo, 1
|
1996
|
+
repeated :apps, CMsgClientPICSProductInfoRequest::AppInfo, 2
|
1997
|
+
optional :meta_data_only, :bool, 3
|
1998
|
+
optional :num_prev_failed, :uint32, 4
|
1999
|
+
end
|
2000
|
+
|
2001
|
+
class CMsgClientPICSProductInfoResponse
|
2002
|
+
|
2003
|
+
class AppInfo
|
2004
|
+
optional :appid, :uint32, 1
|
2005
|
+
optional :change_number, :uint32, 2
|
2006
|
+
optional :missing_token, :bool, 3
|
2007
|
+
optional :sha, :bytes, 4
|
2008
|
+
optional :buffer, :bytes, 5
|
2009
|
+
optional :only_public, :bool, 6
|
2010
|
+
optional :size, :uint32, 7
|
2011
|
+
end
|
2012
|
+
|
2013
|
+
class PackageInfo
|
2014
|
+
optional :packageid, :uint32, 1
|
2015
|
+
optional :change_number, :uint32, 2
|
2016
|
+
optional :missing_token, :bool, 3
|
2017
|
+
optional :sha, :bytes, 4
|
2018
|
+
optional :buffer, :bytes, 5
|
2019
|
+
optional :size, :uint32, 6
|
2020
|
+
end
|
2021
|
+
repeated :apps, CMsgClientPICSProductInfoResponse::AppInfo, 1
|
2022
|
+
repeated :unknown_appids, :uint32, 2
|
2023
|
+
repeated :packages, CMsgClientPICSProductInfoResponse::PackageInfo, 3
|
2024
|
+
repeated :unknown_packageids, :uint32, 4
|
2025
|
+
optional :meta_data_only, :bool, 5
|
2026
|
+
optional :response_pending, :bool, 6
|
2027
|
+
optional :http_min_size, :uint32, 7
|
2028
|
+
optional :http_host, :string, 8
|
2029
|
+
end
|
2030
|
+
|
2031
|
+
class CMsgClientPICSAccessTokenRequest
|
2032
|
+
repeated :packageids, :uint32, 1
|
2033
|
+
repeated :appids, :uint32, 2
|
2034
|
+
end
|
2035
|
+
|
2036
|
+
class CMsgClientPICSAccessTokenResponse
|
2037
|
+
|
2038
|
+
class PackageToken
|
2039
|
+
optional :packageid, :uint32, 1
|
2040
|
+
optional :access_token, :uint64, 2
|
2041
|
+
end
|
2042
|
+
|
2043
|
+
class AppToken
|
2044
|
+
optional :appid, :uint32, 1
|
2045
|
+
optional :access_token, :uint64, 2
|
2046
|
+
end
|
2047
|
+
repeated :package_access_tokens, CMsgClientPICSAccessTokenResponse::PackageToken, 1
|
2048
|
+
repeated :package_denied_tokens, :uint32, 2
|
2049
|
+
repeated :app_access_tokens, CMsgClientPICSAccessTokenResponse::AppToken, 3
|
2050
|
+
repeated :app_denied_tokens, :uint32, 4
|
2051
|
+
end
|
2052
|
+
|
2053
|
+
class CMsgClientUFSGetUGCDetails
|
2054
|
+
optional :hcontent, :fixed64, 1, :default => 18446744073709551615
|
2055
|
+
end
|
2056
|
+
|
2057
|
+
class CMsgClientUFSGetUGCDetailsResponse
|
2058
|
+
optional :eresult, :int32, 1, :default => 2
|
2059
|
+
optional :url, :string, 2
|
2060
|
+
optional :app_id, :uint32, 3
|
2061
|
+
optional :filename, :string, 4
|
2062
|
+
optional :steamid_creator, :fixed64, 5
|
2063
|
+
optional :file_size, :uint32, 6
|
2064
|
+
optional :compressed_file_size, :uint32, 7
|
2065
|
+
optional :rangecheck_host, :string, 8
|
2066
|
+
optional :file_encoded_sha1, :string, 9
|
2067
|
+
end
|
2068
|
+
|
2069
|
+
class CMsgClientUFSGetSingleFileInfo
|
2070
|
+
optional :app_id, :uint32, 1
|
2071
|
+
optional :file_name, :string, 2
|
2072
|
+
end
|
2073
|
+
|
2074
|
+
class CMsgClientUFSGetSingleFileInfoResponse
|
2075
|
+
optional :eresult, :int32, 1, :default => 2
|
2076
|
+
optional :app_id, :uint32, 2
|
2077
|
+
optional :file_name, :string, 3
|
2078
|
+
optional :sha_file, :bytes, 4
|
2079
|
+
optional :time_stamp, :uint64, 5
|
2080
|
+
optional :raw_file_size, :uint32, 6
|
2081
|
+
optional :is_explicit_delete, :bool, 7
|
2082
|
+
end
|
2083
|
+
|
2084
|
+
class CMsgClientUFSShareFile
|
2085
|
+
optional :app_id, :uint32, 1
|
2086
|
+
optional :file_name, :string, 2
|
2087
|
+
end
|
2088
|
+
|
2089
|
+
class CMsgClientUFSShareFileResponse
|
2090
|
+
optional :eresult, :int32, 1, :default => 2
|
2091
|
+
optional :hcontent, :fixed64, 2, :default => 18446744073709551615
|
2092
|
+
end
|
2093
|
+
|
2094
|
+
class CMsgClientNewLoginKey
|
2095
|
+
optional :unique_id, :uint32, 1
|
2096
|
+
optional :login_key, :string, 2
|
2097
|
+
end
|
2098
|
+
|
2099
|
+
class CMsgClientNewLoginKeyAccepted
|
2100
|
+
optional :unique_id, :uint32, 1
|
2101
|
+
end
|
2102
|
+
|
2103
|
+
class CMsgClientAMGetClanOfficers
|
2104
|
+
optional :steamid_clan, :fixed64, 1
|
2105
|
+
end
|
2106
|
+
|
2107
|
+
class CMsgClientAMGetClanOfficersResponse
|
2108
|
+
optional :eresult, :int32, 1, :default => 2
|
2109
|
+
optional :steamid_clan, :fixed64, 2
|
2110
|
+
optional :officer_count, :int32, 3
|
2111
|
+
end
|
2112
|
+
|
2113
|
+
class CMsgClientAMGetPersonaNameHistory
|
2114
|
+
|
2115
|
+
class IdInstance
|
2116
|
+
optional :steamid, :fixed64, 1
|
2117
|
+
end
|
2118
|
+
optional :id_count, :int32, 1
|
2119
|
+
repeated :Ids, CMsgClientAMGetPersonaNameHistory::IdInstance, 2
|
2120
|
+
end
|
2121
|
+
|
2122
|
+
class CMsgClientAMGetPersonaNameHistoryResponse
|
2123
|
+
|
2124
|
+
class NameTableInstance
|
2125
|
+
|
2126
|
+
class NameInstance
|
2127
|
+
optional :name_since, :fixed32, 1
|
2128
|
+
optional :name, :string, 2
|
2129
|
+
end
|
2130
|
+
optional :eresult, :int32, 1, :default => 2
|
2131
|
+
optional :steamid, :fixed64, 2
|
2132
|
+
repeated :names, CMsgClientAMGetPersonaNameHistoryResponse::NameTableInstance::NameInstance, 3
|
2133
|
+
end
|
2134
|
+
repeated :responses, CMsgClientAMGetPersonaNameHistoryResponse::NameTableInstance, 2
|
2135
|
+
end
|
2136
|
+
|
2137
|
+
class CMsgClientDeregisterWithServer
|
2138
|
+
optional :eservertype, :uint32, 1
|
2139
|
+
optional :app_id, :uint32, 2
|
2140
|
+
end
|
2141
|
+
|
2142
|
+
class CMsgClientClanState
|
2143
|
+
|
2144
|
+
class NameInfo
|
2145
|
+
optional :clan_name, :string, 1
|
2146
|
+
optional :sha_avatar, :bytes, 2
|
2147
|
+
end
|
2148
|
+
|
2149
|
+
class UserCounts
|
2150
|
+
optional :members, :uint32, 1
|
2151
|
+
optional :online, :uint32, 2
|
2152
|
+
optional :chatting, :uint32, 3
|
2153
|
+
optional :in_game, :uint32, 4
|
2154
|
+
end
|
2155
|
+
|
2156
|
+
class Event
|
2157
|
+
optional :gid, :fixed64, 1
|
2158
|
+
optional :event_time, :uint32, 2
|
2159
|
+
optional :headline, :string, 3
|
2160
|
+
optional :game_id, :fixed64, 4
|
2161
|
+
optional :just_posted, :bool, 5
|
2162
|
+
end
|
2163
|
+
optional :steamid_clan, :fixed64, 1
|
2164
|
+
optional :m_unStatusFlags, :uint32, 2
|
2165
|
+
optional :clan_account_flags, :uint32, 3
|
2166
|
+
optional :name_info, CMsgClientClanState::NameInfo, 4
|
2167
|
+
optional :user_counts, CMsgClientClanState::UserCounts, 5
|
2168
|
+
repeated :events, CMsgClientClanState::Event, 6
|
2169
|
+
repeated :announcements, CMsgClientClanState::Event, 7
|
2170
|
+
end
|
2171
|
+
|
2172
|
+
class CMsgClientFriendMsg
|
2173
|
+
optional :steamid, :fixed64, 1
|
2174
|
+
optional :chat_entry_type, :int32, 2
|
2175
|
+
optional :message, :bytes, 3
|
2176
|
+
optional :rtime32_server_timestamp, :fixed32, 4
|
2177
|
+
end
|
2178
|
+
|
2179
|
+
class CMsgClientFriendMsgIncoming
|
2180
|
+
optional :steamid_from, :fixed64, 1
|
2181
|
+
optional :chat_entry_type, :int32, 2
|
2182
|
+
optional :from_limited_account, :bool, 3
|
2183
|
+
optional :message, :bytes, 4
|
2184
|
+
optional :rtime32_server_timestamp, :fixed32, 5
|
2185
|
+
end
|
2186
|
+
|
2187
|
+
class CMsgClientAddFriend
|
2188
|
+
optional :steamid_to_add, :fixed64, 1
|
2189
|
+
optional :accountname_or_email_to_add, :string, 2
|
2190
|
+
end
|
2191
|
+
|
2192
|
+
class CMsgClientAddFriendResponse
|
2193
|
+
optional :eresult, :int32, 1, :default => 2
|
2194
|
+
optional :steam_id_added, :fixed64, 2
|
2195
|
+
optional :persona_name_added, :string, 3
|
2196
|
+
end
|
2197
|
+
|
2198
|
+
class CMsgClientRemoveFriend
|
2199
|
+
optional :friendid, :fixed64, 1
|
2200
|
+
end
|
2201
|
+
|
2202
|
+
class CMsgClientHideFriend
|
2203
|
+
optional :friendid, :fixed64, 1
|
2204
|
+
optional :hide, :bool, 2
|
2205
|
+
end
|
2206
|
+
end
|