steamd 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +5 -0
  3. data/.rspec +2 -0
  4. data/.rubocop.yml +4 -0
  5. data/.ruby-version +1 -0
  6. data/.travis.yml +6 -0
  7. data/Gemfile +3 -0
  8. data/LICENSE +21 -0
  9. data/README.md +51 -0
  10. data/Rakefile +22 -0
  11. data/bin/console +6 -0
  12. data/bin/setup +6 -0
  13. data/bin/steamd +6 -0
  14. data/grammar/class.treetop +63 -0
  15. data/grammar/enums.treetop +44 -0
  16. data/grammar/import.treetop +11 -0
  17. data/grammar/shared.treetop +62 -0
  18. data/grammar/steamd.treetop +15 -0
  19. data/language/emsg.steamd +1802 -0
  20. data/language/enums.steamd +989 -0
  21. data/language/eresult.steamd +119 -0
  22. data/language/gamecoordinator.steamd +17 -0
  23. data/language/header.steamd +37 -0
  24. data/language/netheader.steamd +62 -0
  25. data/language/steammsg.steamd +357 -0
  26. data/lib/ext/string.rb +33 -0
  27. data/lib/steamd.rb +40 -0
  28. data/lib/steamd/cli.rb +24 -0
  29. data/lib/steamd/cli_options.rb +58 -0
  30. data/lib/steamd/code_generator.rb +41 -0
  31. data/lib/steamd/generated/emsg.rb +3464 -0
  32. data/lib/steamd/generated/enums.rb +1750 -0
  33. data/lib/steamd/generated/eresult.rb +236 -0
  34. data/lib/steamd/generated/gamecoordinator.rb +119 -0
  35. data/lib/steamd/generated/header.rb +261 -0
  36. data/lib/steamd/generated/netheader.rb +315 -0
  37. data/lib/steamd/generated/steammsg.rb +2527 -0
  38. data/lib/steamd/generator.rb +6 -0
  39. data/lib/steamd/generator/generated_class.rb +128 -0
  40. data/lib/steamd/generator/generated_enum.rb +60 -0
  41. data/lib/steamd/generator/generated_import.rb +21 -0
  42. data/lib/steamd/generator/implementation.rb +83 -0
  43. data/lib/steamd/generator/ruby/class.erb +39 -0
  44. data/lib/steamd/generator/ruby/enum.erb +14 -0
  45. data/lib/steamd/generator/ruby/import.erb +1 -0
  46. data/lib/steamd/generator/ruby/ruby.rb +54 -0
  47. data/lib/steamd/generator/ruby/serializable_constant.rb +20 -0
  48. data/lib/steamd/generator/ruby/serializable_type.rb +93 -0
  49. data/lib/steamd/generator/ruby/serializable_variable.rb +85 -0
  50. data/lib/steamd/generator/ruby/steam_serializable.rb +89 -0
  51. data/lib/steamd/nodes/block_node.rb +14 -0
  52. data/lib/steamd/nodes/class_statement_node.rb +46 -0
  53. data/lib/steamd/nodes/class_type_node.rb +12 -0
  54. data/lib/steamd/nodes/enum_statement_node.rb +50 -0
  55. data/lib/steamd/nodes/enum_variable_node.rb +24 -0
  56. data/lib/steamd/nodes/import_statement_node.rb +26 -0
  57. data/lib/steamd/nodes/node.rb +3 -0
  58. data/lib/steamd/nodes/nodes.rb +10 -0
  59. data/lib/steamd/nodes/variable_node.rb +106 -0
  60. data/lib/steamd/parser.rb +157 -0
  61. data/lib/steamd/version.rb +14 -0
  62. data/steamd.gemspec +38 -0
  63. data/tasks/language.rake +11 -0
  64. metadata +220 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 848ae89bcd8ef8b5a5307737c514ae324b00b751
4
+ data.tar.gz: b7c8e93a682d15c757768cc91ba895ccbf528e43
5
+ SHA512:
6
+ metadata.gz: 327634b3a2d57a92d04d2385e63a45601fc25bb33d4fb01e223d83fa2d33b298efa19daef778da2c879b4c1b1a50403182a5a8f272b63ce78989abe52266b492
7
+ data.tar.gz: e35b13c41d26aebfc51f0ff74e185b0fe104fc75a0e52dba6eb4df91c33db1a97e73f0e777a5529bc3d6493d98c452b61521c51eea316637235b67f1b44d64cc
@@ -0,0 +1,5 @@
1
+ .DS_Store
2
+ /tmp
3
+ /doc
4
+ .yardoc
5
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format progress
2
+ --color
@@ -0,0 +1,4 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.3
3
+ Exclude:
4
+ - lib/steamd/generated/*.rb
@@ -0,0 +1 @@
1
+ 2.3.1
@@ -0,0 +1,6 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.13.2
6
+ script: rake spec:all
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2016
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,51 @@
1
+ # Steamd
2
+ [![Build Status](https://travis-ci.org/fastpeek/steamd.svg?branch=master)](https://travis-ci.org/fastpeek/steamd)
3
+
4
+ Ruby interface to the [Steam Language](https://github.com/SteamRE/SteamKit/tree/master/Resources/SteamLanguage).
5
+
6
+ ## Installation
7
+
8
+ Add `gem 'steamd'` to your Gemfile
9
+
10
+ ## Usage
11
+
12
+ ```ruby
13
+ require 'steamd'
14
+ Steamd.load_language
15
+
16
+ hdr = MsgHdr.new
17
+ hdr.target_job_id = 123
18
+
19
+ bytes = hdr.serialize
20
+ # => "\x00\x00\x00\x00{\x00\x00\x00\x00\x00\x00\x00\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"
21
+
22
+ io = StringIO.new(bytes)
23
+ hdr = MsgHeader.new
24
+ hdr.deserialize(io)
25
+
26
+ hdr.target_job_id
27
+ # => 123
28
+ hdr.source_job_id
29
+ # => 0xFFFFFFFFFFFFFFFF
30
+ ```
31
+
32
+ Each class contains an `#serialize`, and `#deserialize(io)` method for
33
+ encoding the class into it's byte representation and decoding a valid class from
34
+ a byte string.
35
+
36
+ ## Documentation
37
+
38
+ You can view the documentation of the generated classes [here](google.com)
39
+
40
+ ## Classes with Protobuf variables
41
+
42
+ Some generated classes, like `MsgHdrProtoBuf` contain variables that are
43
+ Protobuf objects (`CMsgProtoBufHeader`). To have access to these you can use
44
+ the [`steam-proto`](https://github.com/fastpeek/steam-proto) gem.
45
+
46
+ ## Updating the generated files
47
+
48
+ If the upstream language definitions change the code can be regenerated as
49
+ follows.
50
+
51
+ `bundle exec ./bin/steamd generate -o lib/steamd/generated/`
@@ -0,0 +1,22 @@
1
+ require 'rspec/core/rake_task'
2
+ require 'rubocop/rake_task'
3
+
4
+ load 'tasks/language.rake'
5
+
6
+ RSpec::Core::RakeTask.new('spec:units') do |task|
7
+ task.rspec_opts = '--tag ~slow'
8
+ end
9
+
10
+ RSpec::Core::RakeTask.new('spec:integration') do |task|
11
+ task.rspec_opts = '--tag slow'
12
+ end
13
+
14
+ RuboCop::RakeTask.new do |task|
15
+ task.options = ['lib/']
16
+ end
17
+
18
+ desc 'Run all specs and linter'
19
+ task 'spec:all' => ['spec:units', 'spec:integration', 'rubocop:auto_correct'] do
20
+ end
21
+
22
+ task default: ['spec:units', 'rubocop:auto_correct']
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'steamd'
4
+ require 'pry'
5
+
6
+ Pry.start
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'steamd'
4
+ require 'steamd/cli'
5
+
6
+ Steamd::Cli.start
@@ -0,0 +1,63 @@
1
+ grammar Classes
2
+ include Shared
3
+
4
+ rule class
5
+ 'class' space class_name '<'? class_type? '>'? space?
6
+ '{'
7
+ first_var:decleration other:(';' space decleration)*
8
+ '}' ';'?
9
+ <ClassStatement>
10
+ end
11
+
12
+ rule class_name
13
+ word
14
+ end
15
+
16
+ rule class_type
17
+ [0-9\.\'A-Za-z\:_,;\\s ]+ <ClassType>
18
+ end
19
+
20
+ rule decleration
21
+ typed_var_with_modifier_with_value
22
+ /
23
+ typed_var_with_modifier_no_value
24
+ /
25
+ typed_var_with_value
26
+ /
27
+ typed_var_no_value
28
+ /
29
+ space
30
+ end
31
+
32
+ rule typed_var_with_value
33
+ space var_type space variable_name space '=' space var_value
34
+ <VariableWithValue>
35
+ end
36
+
37
+ rule typed_var_no_value
38
+ space var_type space variable_name
39
+ <Variable>
40
+ end
41
+
42
+ rule typed_var_with_modifier_no_value
43
+ space var_modifier space var_type space variable_name
44
+ <VariableWithModifierNoValue>
45
+ end
46
+
47
+ rule typed_var_with_modifier_with_value
48
+ space var_modifier space var_type space variable_name space '=' space var_value
49
+ <VariableWithModifierWithValue>
50
+ end
51
+
52
+ rule variable_name
53
+ word
54
+ end
55
+
56
+ rule var_modifier
57
+ word '<'? size:(var_value)? '>'?
58
+ end
59
+
60
+ rule var_type
61
+ type:([0-9A-Za-z\.\:]+) size:(('<' var_value '>')?)
62
+ end
63
+ end
@@ -0,0 +1,44 @@
1
+ # Understands how to parse Enums in .steamd files.
2
+ grammar Enums
3
+ include Shared
4
+
5
+ # An Enum is in the form of one of the following
6
+ # Enum { }
7
+ # Enum<byte> {}
8
+ # Enum flag {}
9
+ # They contain a list of variables.
10
+ rule enums
11
+ 'enum' space enum_name space? enum_type:('<'? type '>'?)? space '{'
12
+ space? first_var:(enum_decleration) other:(';' space enum_decleration)*
13
+ '}' ';'?
14
+ <EnumStatement>
15
+ end
16
+
17
+ rule enum_name
18
+ word
19
+ end
20
+
21
+ # An enum decleration is line of the form
22
+ # EResult = 1;
23
+ # Msg = Flags1 | Flags2
24
+ rule enum_decleration
25
+ enum_variable
26
+ /
27
+ space
28
+ end
29
+
30
+ rule enum_variable
31
+ enum_variable_name space '=' space enum_variable_value
32
+ <EnumVariable>
33
+ end
34
+
35
+ # Read in a word
36
+ rule enum_variable_name
37
+ word
38
+ end
39
+
40
+ # Valid values for enums variables
41
+ rule enum_variable_value
42
+ hex / number / flags
43
+ end
44
+ end
@@ -0,0 +1,11 @@
1
+ grammar Import
2
+ include Shared
3
+
4
+ rule import
5
+ '#import' space '"' filename '"' space <ImportStatement>
6
+ end
7
+
8
+ rule filename
9
+ word '.' word
10
+ end
11
+ end
@@ -0,0 +1,62 @@
1
+ grammar Shared
2
+ rule type
3
+ word
4
+ end
5
+
6
+ rule word
7
+ [\w]+
8
+ end
9
+
10
+ rule space
11
+ [ \t\r\n]*
12
+ end
13
+
14
+ rule var_value
15
+ hex / float / number / string
16
+ end
17
+
18
+ rule float
19
+ number '.' number {
20
+ def value
21
+ text_value.to_f
22
+ end
23
+ }
24
+ end
25
+
26
+ rule hex
27
+ '0x' [a-fA-F0-9]+ {
28
+ def value
29
+ text_value
30
+ end
31
+ }
32
+ end
33
+
34
+ rule string
35
+ [_A-Za-z\:\.0-9]+ {
36
+ def value
37
+ v = text_value
38
+ if v == 'ulong.MaxValue'
39
+ 0xFFFFFFFFFFFFFFFF
40
+ else
41
+ v
42
+ end
43
+ end
44
+ }
45
+ end
46
+
47
+ rule number
48
+ ('-')? [0-9]+ {
49
+ def value
50
+ text_value.to_i
51
+ end
52
+ }
53
+ end
54
+
55
+ rule flags
56
+ (space? word space '|'?)+ {
57
+ def value
58
+ text_value
59
+ end
60
+ }
61
+ end
62
+ end
@@ -0,0 +1,15 @@
1
+ grammar Steamd
2
+ include Shared
3
+ include Import
4
+ include Classes
5
+ include Enums
6
+
7
+ rule block
8
+ (statement space?)+
9
+ <Block>
10
+ end
11
+
12
+ rule statement
13
+ (import / class / enums)
14
+ end
15
+ end
@@ -0,0 +1,1802 @@
1
+ enum EMsg
2
+ {
3
+ Invalid = 0;
4
+ Multi = 1;
5
+
6
+ BaseGeneral = 100;
7
+ GenericReply = 100;
8
+ DestJobFailed = 113;
9
+ Alert = 115;
10
+ SCIDRequest = 120;
11
+ SCIDResponse = 121;
12
+ JobHeartbeat = 123;
13
+ HubConnect = 124;
14
+ Subscribe = 126;
15
+ RouteMessage = 127;
16
+ RemoteSysID = 128;
17
+ AMCreateAccountResponse = 129;
18
+ WGRequest = 130;
19
+ WGResponse = 131;
20
+ KeepAlive = 132;
21
+ WebAPIJobRequest = 133;
22
+ WebAPIJobResponse = 134;
23
+ ClientSessionStart = 135;
24
+ ClientSessionEnd = 136;
25
+ ClientSessionUpdateAuthTicket = 137;
26
+ StatsDeprecated = 138; obsolete
27
+ Ping = 139;
28
+ PingResponse = 140;
29
+ Stats = 141;
30
+ RequestFullStatsBlock = 142;
31
+ LoadDBOCacheItem = 143;
32
+ LoadDBOCacheItemResponse = 144;
33
+ InvalidateDBOCacheItems = 145;
34
+ ServiceMethod = 146;
35
+ ServiceMethodResponse = 147;
36
+
37
+ BaseShell = 200;
38
+ AssignSysID = 200;
39
+ Exit = 201;
40
+ DirRequest = 202;
41
+ DirResponse = 203;
42
+ ZipRequest = 204;
43
+ ZipResponse = 205;
44
+ UpdateRecordResponse = 215;
45
+ UpdateCreditCardRequest = 221;
46
+ UpdateUserBanResponse = 225;
47
+ PrepareToExit = 226;
48
+ ContentDescriptionUpdate = 227;
49
+ TestResetServer = 228;
50
+ UniverseChanged = 229;
51
+ ShellConfigInfoUpdate = 230;
52
+ RequestWindowsEventLogEntries = 233;
53
+ ProvideWindowsEventLogEntries = 234;
54
+ ShellSearchLogs = 235;
55
+ ShellSearchLogsResponse = 236;
56
+ ShellCheckWindowsUpdates = 237;
57
+ ShellCheckWindowsUpdatesResponse = 238;
58
+ ShellFlushUserLicenseCache = 239;
59
+
60
+ BaseGM = 300;
61
+ Heartbeat = 300;
62
+ ShellFailed = 301;
63
+ ExitShells = 307;
64
+ ExitShell = 308;
65
+ GracefulExitShell = 309;
66
+ NotifyWatchdog = 314;
67
+ LicenseProcessingComplete = 316;
68
+ SetTestFlag = 317;
69
+ QueuedEmailsComplete = 318;
70
+ GMReportPHPError = 319;
71
+ GMDRMSync = 320;
72
+ PhysicalBoxInventory = 321;
73
+ UpdateConfigFile = 322;
74
+ TestInitDB = 323;
75
+ GMWriteConfigToSQL = 324;
76
+ GMLoadActivationCodes = 325;
77
+ GMQueueForFBS = 326;
78
+ GMSchemaConversionResults = 327;
79
+ GMSchemaConversionResultsResponse = 328;
80
+ GMWriteShellFailureToSQL = 329;
81
+
82
+ BaseAIS = 400;
83
+ AISRefreshContentDescription = 401;
84
+ AISRequestContentDescription = 402;
85
+ AISUpdateAppInfo = 403;
86
+ AISUpdatePackageInfo = 404;
87
+ AISGetPackageChangeNumber = 405;
88
+ AISGetPackageChangeNumberResponse = 406;
89
+ AISAppInfoTableChanged = 407;
90
+ AISUpdatePackageInfoResponse = 408;
91
+ AISCreateMarketingMessage = 409;
92
+ AISCreateMarketingMessageResponse = 410;
93
+ AISGetMarketingMessage = 411;
94
+ AISGetMarketingMessageResponse = 412;
95
+ AISUpdateMarketingMessage = 413;
96
+ AISUpdateMarketingMessageResponse = 414;
97
+ AISRequestMarketingMessageUpdate = 415;
98
+ AISDeleteMarketingMessage = 416;
99
+ AISGetMarketingTreatments = 419;
100
+ AISGetMarketingTreatmentsResponse = 420;
101
+ AISRequestMarketingTreatmentUpdate = 421;
102
+ AISTestAddPackage = 422;
103
+ AIGetAppGCFlags = 423;
104
+ AIGetAppGCFlagsResponse = 424;
105
+ AIGetAppList = 425;
106
+ AIGetAppListResponse = 426;
107
+ AIGetAppInfo = 427;
108
+ AIGetAppInfoResponse = 428;
109
+ AISGetCouponDefinition = 429;
110
+ AISGetCouponDefinitionResponse = 430;
111
+
112
+ BaseAM = 500;
113
+ AMUpdateUserBanRequest = 504;
114
+ AMAddLicense = 505;
115
+ AMBeginProcessingLicenses = 507;
116
+ AMSendSystemIMToUser = 508;
117
+ AMExtendLicense = 509;
118
+ AMAddMinutesToLicense = 510;
119
+ AMCancelLicense = 511;
120
+ AMInitPurchase = 512;
121
+ AMPurchaseResponse = 513;
122
+ AMGetFinalPrice = 514;
123
+ AMGetFinalPriceResponse = 515;
124
+ AMGetLegacyGameKey = 516;
125
+ AMGetLegacyGameKeyResponse = 517;
126
+ AMFindHungTransactions = 518;
127
+ AMSetAccountTrustedRequest = 519;
128
+ AMCompletePurchase = 521;
129
+ AMCancelPurchase = 522;
130
+ AMNewChallenge = 523;
131
+ AMFixPendingPurchaseResponse = 526;
132
+ AMIsUserBanned = 527;
133
+ AMRegisterKey = 528;
134
+ AMLoadActivationCodes = 529;
135
+ AMLoadActivationCodesResponse = 530;
136
+ AMLookupKeyResponse = 531;
137
+ AMLookupKey = 532;
138
+ AMChatCleanup = 533;
139
+ AMClanCleanup = 534;
140
+ AMFixPendingRefund = 535;
141
+ AMReverseChargeback = 536;
142
+ AMReverseChargebackResponse = 537;
143
+ AMClanCleanupList = 538;
144
+ AMGetLicenses = 539;
145
+ AMGetLicensesResponse = 540;
146
+ AllowUserToPlayQuery = 550;
147
+ AllowUserToPlayResponse = 551;
148
+ AMVerfiyUser = 552;
149
+ AMClientNotPlaying = 553;
150
+ ClientRequestFriendship = 554;
151
+ AMRelayPublishStatus = 555;
152
+ AMResetCommunityContent = 556;
153
+ AMPrimePersonaStateCache = 557;
154
+ AMAllowUserContentQuery = 558;
155
+ AMAllowUserContentResponse = 559;
156
+ AMInitPurchaseResponse = 560;
157
+ AMRevokePurchaseResponse = 561;
158
+ AMLockProfile = 562;
159
+ AMRefreshGuestPasses = 563;
160
+ AMInviteUserToClan = 564;
161
+ AMAcknowledgeClanInvite = 565;
162
+ AMGrantGuestPasses = 566;
163
+ AMClanDataUpdated = 567;
164
+ AMReloadAccount = 568;
165
+ AMClientChatMsgRelay = 569;
166
+ AMChatMulti = 570;
167
+ AMClientChatInviteRelay = 571;
168
+ AMChatInvite = 572;
169
+ AMClientJoinChatRelay = 573;
170
+ AMClientChatMemberInfoRelay = 574;
171
+ AMPublishChatMemberInfo = 575;
172
+ AMClientAcceptFriendInvite = 576;
173
+ AMChatEnter = 577;
174
+ AMClientPublishRemovalFromSource = 578;
175
+ AMChatActionResult = 579;
176
+ AMFindAccounts = 580;
177
+ AMFindAccountsResponse = 581;
178
+ AMSetAccountFlags = 584;
179
+ AMCreateClan = 586;
180
+ AMCreateClanResponse = 587;
181
+ AMGetClanDetails = 588;
182
+ AMGetClanDetailsResponse = 589;
183
+ AMSetPersonaName = 590;
184
+ AMSetAvatar = 591;
185
+ AMAuthenticateUser = 592;
186
+ AMAuthenticateUserResponse = 593;
187
+ AMGetAccountFriendsCount = 594;
188
+ AMGetAccountFriendsCountResponse = 595;
189
+ AMP2PIntroducerMessage = 596;
190
+ ClientChatAction = 597;
191
+ AMClientChatActionRelay = 598;
192
+
193
+ BaseVS = 600;
194
+ ReqChallenge = 600;
195
+ VACResponse = 601;
196
+ ReqChallengeTest = 602;
197
+ VSMarkCheat = 604;
198
+ VSAddCheat = 605;
199
+ VSPurgeCodeModDB = 606;
200
+ VSGetChallengeResults = 607;
201
+ VSChallengeResultText = 608;
202
+ VSReportLingerer = 609;
203
+ VSRequestManagedChallenge = 610;
204
+ VSLoadDBFinished = 611;
205
+
206
+ BaseDRMS = 625;
207
+ DRMBuildBlobRequest = 628;
208
+ DRMBuildBlobResponse = 629;
209
+ DRMResolveGuidRequest = 630;
210
+ DRMResolveGuidResponse = 631;
211
+ DRMVariabilityReport = 633;
212
+ DRMVariabilityReportResponse = 634;
213
+ DRMStabilityReport = 635;
214
+ DRMStabilityReportResponse = 636;
215
+ DRMDetailsReportRequest = 637;
216
+ DRMDetailsReportResponse = 638;
217
+ DRMProcessFile = 639;
218
+ DRMAdminUpdate = 640;
219
+ DRMAdminUpdateResponse = 641;
220
+ DRMSync = 642;
221
+ DRMSyncResponse = 643;
222
+ DRMProcessFileResponse = 644;
223
+ DRMEmptyGuidCache = 645;
224
+ DRMEmptyGuidCacheResponse = 646;
225
+
226
+ BaseCS = 650;
227
+ CSUserContentRequest = 652; obsolete
228
+
229
+ BaseClient = 700;
230
+ ClientLogOn_Deprecated = 701; obsolete
231
+ ClientAnonLogOn_Deprecated = 702; obsolete
232
+ ClientHeartBeat = 703;
233
+ ClientVACResponse = 704;
234
+ ClientGamesPlayed_obsolete = 705; obsolete
235
+ ClientLogOff = 706;
236
+ ClientNoUDPConnectivity = 707;
237
+ ClientInformOfCreateAccount = 708;
238
+ ClientAckVACBan = 709;
239
+ ClientConnectionStats = 710;
240
+ ClientInitPurchase = 711;
241
+ ClientPingResponse = 712;
242
+ ClientRemoveFriend = 714;
243
+ ClientGamesPlayedNoDataBlob = 715;
244
+ ClientChangeStatus = 716;
245
+ ClientVacStatusResponse = 717;
246
+ ClientFriendMsg = 718;
247
+ ClientGameConnect_obsolete = 719; obsolete
248
+ ClientGamesPlayed2_obsolete = 720; obsolete
249
+ ClientGameEnded_obsolete = 721; obsolete
250
+ ClientGetFinalPrice = 722;
251
+ ClientSystemIM = 726;
252
+ ClientSystemIMAck = 727;
253
+ ClientGetLicenses = 728;
254
+ ClientCancelLicense = 729; obsolete
255
+ ClientGetLegacyGameKey = 730;
256
+ ClientContentServerLogOn_Deprecated = 731; obsolete
257
+ ClientAckVACBan2 = 732;
258
+ ClientAckMessageByGID = 735; obsolete
259
+ ClientGetPurchaseReceipts = 736;
260
+ ClientAckPurchaseReceipt = 737;
261
+ ClientGamesPlayed3_obsolete = 738; obsolete
262
+ ClientSendGuestPass = 739;
263
+ ClientAckGuestPass = 740;
264
+ ClientRedeemGuestPass = 741;
265
+ ClientGamesPlayed = 742;
266
+ ClientRegisterKey = 743;
267
+ ClientInviteUserToClan = 744;
268
+ ClientAcknowledgeClanInvite = 745;
269
+ ClientPurchaseWithMachineID = 746;
270
+ ClientAppUsageEvent = 747;
271
+ ClientGetGiftTargetList = 748; obsolete
272
+ ClientGetGiftTargetListResponse = 749; obsolete
273
+ ClientLogOnResponse = 751;
274
+ ClientVACChallenge = 753;
275
+ ClientSetHeartbeatRate = 755;
276
+ ClientNotLoggedOnDeprecated = 756; obsolete
277
+ ClientLoggedOff = 757;
278
+ GSApprove = 758;
279
+ GSDeny = 759;
280
+ GSKick = 760;
281
+ ClientCreateAcctResponse = 761;
282
+ ClientPurchaseResponse = 763;
283
+ ClientPing = 764;
284
+ ClientNOP = 765;
285
+ ClientPersonaState = 766;
286
+ ClientFriendsList = 767;
287
+ ClientAccountInfo = 768;
288
+ ClientVacStatusQuery = 770;
289
+ ClientNewsUpdate = 771;
290
+ ClientGameConnectDeny = 773;
291
+ GSStatusReply = 774;
292
+ ClientGetFinalPriceResponse = 775;
293
+ ClientGameConnectTokens = 779;
294
+ ClientLicenseList = 780;
295
+ ClientCancelLicenseResponse = 781; obsolete
296
+ ClientVACBanStatus = 782;
297
+ ClientCMList = 783;
298
+ ClientEncryptPct = 784;
299
+ ClientGetLegacyGameKeyResponse = 785;
300
+ ClientFavoritesList = 786;
301
+ CSUserContentApprove = 787; obsolete
302
+ CSUserContentDeny = 788; obsolete
303
+ ClientInitPurchaseResponse = 789;
304
+ ClientAddFriend = 791;
305
+ ClientAddFriendResponse = 792;
306
+ ClientInviteFriend = 793; obsolete
307
+ ClientInviteFriendResponse = 794; obsolete
308
+ ClientSendGuestPassResponse = 795; obsolete
309
+ ClientAckGuestPassResponse = 796;
310
+ ClientRedeemGuestPassResponse = 797;
311
+ ClientUpdateGuestPassesList = 798;
312
+ ClientChatMsg = 799;
313
+ ClientChatInvite = 800;
314
+ ClientJoinChat = 801;
315
+ ClientChatMemberInfo = 802;
316
+ ClientLogOnWithCredentials_Deprecated = 803; obsolete
317
+ ClientPasswordChangeResponse = 805;
318
+ ClientChatEnter = 807;
319
+ ClientFriendRemovedFromSource = 808;
320
+ ClientCreateChat = 809;
321
+ ClientCreateChatResponse = 810;
322
+ ClientUpdateChatMetadata = 811;
323
+ ClientP2PIntroducerMessage = 813;
324
+ ClientChatActionResult = 814;
325
+ ClientRequestFriendData = 815;
326
+ ClientGetUserStats = 818;
327
+ ClientGetUserStatsResponse = 819;
328
+ ClientStoreUserStats = 820;
329
+ ClientStoreUserStatsResponse = 821;
330
+ ClientClanState = 822;
331
+ ClientServiceModule = 830;
332
+ ClientServiceCall = 831;
333
+ ClientServiceCallResponse = 832;
334
+ ClientPackageInfoRequest = 833;
335
+ ClientPackageInfoResponse = 834;
336
+ ClientNatTraversalStatEvent = 839;
337
+ ClientAppInfoRequest = 840;
338
+ ClientAppInfoResponse = 841;
339
+ ClientSteamUsageEvent = 842;
340
+ ClientCheckPassword = 845;
341
+ ClientResetPassword = 846;
342
+ ClientCheckPasswordResponse = 848;
343
+ ClientResetPasswordResponse = 849;
344
+ ClientSessionToken = 850;
345
+ ClientDRMProblemReport = 851;
346
+ ClientSetIgnoreFriend = 855;
347
+ ClientSetIgnoreFriendResponse = 856;
348
+ ClientGetAppOwnershipTicket = 857;
349
+ ClientGetAppOwnershipTicketResponse = 858;
350
+ ClientGetLobbyListResponse = 860;
351
+ ClientGetLobbyMetadata = 861;
352
+ ClientGetLobbyMetadataResponse = 862;
353
+ ClientVTTCert = 863;
354
+ ClientAppInfoUpdate = 866;
355
+ ClientAppInfoChanges = 867;
356
+ ClientServerList = 880;
357
+ ClientEmailChangeResponse = 891;
358
+ ClientSecretQAChangeResponse = 892;
359
+ ClientDRMBlobRequest = 896;
360
+ ClientDRMBlobResponse = 897;
361
+ ClientLookupKey = 898;
362
+ ClientLookupKeyResponse = 899;
363
+
364
+ BaseGameServer = 900;
365
+ GSDisconnectNotice = 901;
366
+ GSStatus = 903;
367
+ GSUserPlaying = 905;
368
+ GSStatus2 = 906;
369
+ GSStatusUpdate_Unused = 907;
370
+ GSServerType = 908;
371
+ GSPlayerList = 909;
372
+ GSGetUserAchievementStatus = 910;
373
+ GSGetUserAchievementStatusResponse = 911;
374
+ GSGetPlayStats = 918;
375
+ GSGetPlayStatsResponse = 919;
376
+ GSGetUserGroupStatus = 920;
377
+ AMGetUserGroupStatus = 921;
378
+ AMGetUserGroupStatusResponse = 922;
379
+ GSGetUserGroupStatusResponse = 923;
380
+ GSGetReputation = 936;
381
+ GSGetReputationResponse = 937;
382
+ GSAssociateWithClan = 938;
383
+ GSAssociateWithClanResponse = 939;
384
+ GSComputeNewPlayerCompatibility = 940;
385
+ GSComputeNewPlayerCompatibilityResponse = 941;
386
+
387
+ BaseAdmin = 1000;
388
+ AdminCmd = 1000;
389
+ AdminCmdResponse = 1004;
390
+ AdminLogListenRequest = 1005;
391
+ AdminLogEvent = 1006;
392
+ LogSearchRequest = 1007;
393
+ LogSearchResponse = 1008;
394
+ LogSearchCancel = 1009;
395
+ UniverseData = 1010;
396
+ RequestStatHistory = 1014;
397
+ StatHistory = 1015;
398
+ AdminPwLogon = 1017;
399
+ AdminPwLogonResponse = 1018;
400
+ AdminSpew = 1019;
401
+ AdminConsoleTitle = 1020;
402
+ AdminGCSpew = 1023;
403
+ AdminGCCommand = 1024;
404
+ AdminGCGetCommandList = 1025;
405
+ AdminGCGetCommandListResponse = 1026;
406
+ FBSConnectionData = 1027;
407
+ AdminMsgSpew = 1028;
408
+
409
+ BaseFBS = 1100;
410
+ FBSReqVersion = 1100;
411
+ FBSVersionInfo = 1101;
412
+ FBSForceRefresh = 1102;
413
+ FBSForceBounce = 1103;
414
+ FBSDeployPackage = 1104;
415
+ FBSDeployResponse = 1105;
416
+ FBSUpdateBootstrapper = 1106;
417
+ FBSSetState = 1107;
418
+ FBSApplyOSUpdates = 1108;
419
+ FBSRunCMDScript = 1109;
420
+ FBSRebootBox = 1110;
421
+ FBSSetBigBrotherMode = 1111;
422
+ FBSMinidumpServer = 1112;
423
+ FBSSetShellCount_obsolete = 1113; obsolete
424
+ FBSDeployHotFixPackage = 1114;
425
+ FBSDeployHotFixResponse = 1115;
426
+ FBSDownloadHotFix = 1116;
427
+ FBSDownloadHotFixResponse = 1117;
428
+ FBSUpdateTargetConfigFile = 1118;
429
+ FBSApplyAccountCred = 1119;
430
+ FBSApplyAccountCredResponse = 1120;
431
+ FBSSetShellCount = 1121;
432
+ FBSTerminateShell = 1122;
433
+ FBSQueryGMForRequest = 1123;
434
+ FBSQueryGMResponse = 1124;
435
+ FBSTerminateZombies = 1125;
436
+ FBSInfoFromBootstrapper = 1126;
437
+ FBSRebootBoxResponse = 1127;
438
+ FBSBootstrapperPackageRequest = 1128;
439
+ FBSBootstrapperPackageResponse = 1129;
440
+ FBSBootstrapperGetPackageChunk = 1130;
441
+ FBSBootstrapperGetPackageChunkResponse = 1131;
442
+ FBSBootstrapperPackageTransferProgress = 1132;
443
+ FBSRestartBootstrapper = 1133;
444
+
445
+ BaseFileXfer = 1200;
446
+ FileXferRequest = 1200;
447
+ FileXferResponse = 1201;
448
+ FileXferData = 1202;
449
+ FileXferEnd = 1203;
450
+ FileXferDataAck = 1204;
451
+
452
+ BaseChannelAuth = 1300;
453
+ ChannelAuthChallenge = 1300;
454
+ ChannelAuthResponse = 1301;
455
+ ChannelAuthResult = 1302;
456
+ ChannelEncryptRequest = 1303;
457
+ ChannelEncryptResponse = 1304;
458
+ ChannelEncryptResult = 1305;
459
+
460
+ BaseBS = 1400;
461
+ BSPurchaseStart = 1401;
462
+ BSPurchaseResponse = 1402;
463
+ BSSettleNOVA = 1404;
464
+ BSSettleComplete = 1406;
465
+ BSBannedRequest = 1407;
466
+ BSInitPayPalTxn = 1408;
467
+ BSInitPayPalTxnResponse = 1409;
468
+ BSGetPayPalUserInfo = 1410;
469
+ BSGetPayPalUserInfoResponse = 1411;
470
+ BSRefundTxn = 1413;
471
+ BSRefundTxnResponse = 1414;
472
+ BSGetEvents = 1415;
473
+ BSChaseRFRRequest = 1416;
474
+ BSPaymentInstrBan = 1417;
475
+ BSPaymentInstrBanResponse = 1418;
476
+ BSProcessGCReports = 1419;
477
+ BSProcessPPReports = 1420;
478
+ BSInitGCBankXferTxn = 1421;
479
+ BSInitGCBankXferTxnResponse = 1422;
480
+ BSQueryGCBankXferTxn = 1423;
481
+ BSQueryGCBankXferTxnResponse = 1424;
482
+ BSCommitGCTxn = 1425;
483
+ BSQueryTransactionStatus = 1426;
484
+ BSQueryTransactionStatusResponse = 1427;
485
+ BSQueryCBOrderStatus = 1428;
486
+ BSQueryCBOrderStatusResponse = 1429;
487
+ BSRunRedFlagReport = 1430;
488
+ BSQueryPaymentInstUsage = 1431;
489
+ BSQueryPaymentInstResponse = 1432;
490
+ BSQueryTxnExtendedInfo = 1433;
491
+ BSQueryTxnExtendedInfoResponse = 1434;
492
+ BSUpdateConversionRates = 1435;
493
+ BSProcessUSBankReports = 1436;
494
+ BSPurchaseRunFraudChecks = 1437;
495
+ BSPurchaseRunFraudChecksResponse = 1438;
496
+ BSStartShippingJobs = 1439;
497
+ BSQueryBankInformation = 1440;
498
+ BSQueryBankInformationResponse = 1441;
499
+ BSValidateXsollaSignature = 1445;
500
+ BSValidateXsollaSignatureResponse = 1446;
501
+ BSQiwiWalletInvoice = 1448;
502
+ BSQiwiWalletInvoiceResponse = 1449;
503
+ BSUpdateInventoryFromProPack = 1450;
504
+ BSUpdateInventoryFromProPackResponse = 1451;
505
+ BSSendShippingRequest = 1452;
506
+ BSSendShippingRequestResponse = 1453;
507
+ BSGetProPackOrderStatus = 1454;
508
+ BSGetProPackOrderStatusResponse = 1455;
509
+ BSCheckJobRunning = 1456;
510
+ BSCheckJobRunningResponse = 1457;
511
+ BSResetPackagePurchaseRateLimit = 1458;
512
+ BSResetPackagePurchaseRateLimitResponse = 1459;
513
+ BSUpdatePaymentData = 1460;
514
+ BSUpdatePaymentDataResponse = 1461;
515
+ BSGetBillingAddress = 1462;
516
+ BSGetBillingAddressResponse = 1463;
517
+ BSGetCreditCardInfo = 1464;
518
+ BSGetCreditCardInfoResponse = 1465;
519
+ BSRemoveExpiredPaymentData = 1468;
520
+ BSRemoveExpiredPaymentDataResponse = 1469;
521
+ BSConvertToCurrentKeys = 1470;
522
+ BSConvertToCurrentKeysResponse = 1471;
523
+ BSInitPurchase = 1472;
524
+ BSInitPurchaseResponse = 1473;
525
+ BSCompletePurchase = 1474;
526
+ BSCompletePurchaseResponse = 1475;
527
+ BSPruneCardUsageStats = 1476;
528
+ BSPruneCardUsageStatsResponse = 1477;
529
+ BSStoreBankInformation = 1478;
530
+ BSStoreBankInformationResponse = 1479;
531
+ BSVerifyPOSAKey = 1480;
532
+ BSVerifyPOSAKeyResponse = 1481;
533
+ BSReverseRedeemPOSAKey = 1482;
534
+ BSReverseRedeemPOSAKeyResponse = 1483;
535
+ BSQueryFindCreditCard = 1484;
536
+ BSQueryFindCreditCardResponse = 1485;
537
+ BSStatusInquiryPOSAKey = 1486;
538
+ BSStatusInquiryPOSAKeyResponse = 1487;
539
+ BSValidateMoPaySignature = 1488;
540
+ BSValidateMoPaySignatureResponse = 1489;
541
+ BSMoPayConfirmProductDelivery = 1490;
542
+ BSMoPayConfirmProductDeliveryResponse = 1491;
543
+ BSGenerateMoPayMD5 = 1492;
544
+ BSGenerateMoPayMD5Response = 1493;
545
+ BSBoaCompraConfirmProductDelivery = 1494;
546
+ BSBoaCompraConfirmProductDeliveryResponse = 1495;
547
+ BSGenerateBoaCompraMD5 = 1496;
548
+ BSGenerateBoaCompraMD5Response = 1497;
549
+
550
+ BaseATS = 1500;
551
+ ATSStartStressTest = 1501;
552
+ ATSStopStressTest = 1502;
553
+ ATSRunFailServerTest = 1503;
554
+ ATSUFSPerfTestTask = 1504;
555
+ ATSUFSPerfTestResponse = 1505;
556
+ ATSCycleTCM = 1506;
557
+ ATSInitDRMSStressTest = 1507;
558
+ ATSCallTest = 1508;
559
+ ATSCallTestReply = 1509;
560
+ ATSStartExternalStress = 1510;
561
+ ATSExternalStressJobStart = 1511;
562
+ ATSExternalStressJobQueued = 1512;
563
+ ATSExternalStressJobRunning = 1513;
564
+ ATSExternalStressJobStopped = 1514;
565
+ ATSExternalStressJobStopAll = 1515;
566
+ ATSExternalStressActionResult = 1516;
567
+ ATSStarted = 1517;
568
+ ATSCSPerfTestTask = 1518;
569
+ ATSCSPerfTestResponse = 1519;
570
+
571
+ BaseDP = 1600;
572
+ DPSetPublishingState = 1601;
573
+ DPGamePlayedStats = 1602;
574
+ DPUniquePlayersStat = 1603;
575
+ DPVacInfractionStats = 1605;
576
+ DPVacBanStats = 1606;
577
+ DPBlockingStats = 1607;
578
+ DPNatTraversalStats = 1608;
579
+ DPSteamUsageEvent = 1609;
580
+ DPVacCertBanStats = 1610;
581
+ DPVacCafeBanStats = 1611;
582
+ DPCloudStats = 1612;
583
+ DPAchievementStats = 1613;
584
+ DPAccountCreationStats = 1614;
585
+ DPGetPlayerCount = 1615;
586
+ DPGetPlayerCountResponse = 1616;
587
+ DPGameServersPlayersStats = 1617;
588
+ DPDownloadRateStatistics = 1618;
589
+ DPFacebookStatistics = 1619;
590
+ ClientDPCheckSpecialSurvey = 1620;
591
+ ClientDPCheckSpecialSurveyResponse = 1621;
592
+ ClientDPSendSpecialSurveyResponse = 1622;
593
+ ClientDPSendSpecialSurveyResponseReply = 1623;
594
+ DPStoreSaleStatistics = 1624;
595
+ ClientDPUpdateAppJobReport = 1625;
596
+ ClientDPSteam2AppStarted = 1627; obsolete
597
+ DPUpdateContentEvent = 1626;
598
+ ClientDPContentStatsReport = 1630;
599
+
600
+ BaseCM = 1700;
601
+ CMSetAllowState = 1701;
602
+ CMSpewAllowState = 1702;
603
+ CMAppInfoResponseDeprecated = 1703; obsolete
604
+
605
+ BaseDSS = 1800;
606
+ DSSNewFile = 1801;
607
+ DSSCurrentFileList = 1802;
608
+ DSSSynchList = 1803;
609
+ DSSSynchListResponse = 1804;
610
+ DSSSynchSubscribe = 1805;
611
+ DSSSynchUnsubscribe = 1806;
612
+
613
+ BaseEPM = 1900;
614
+ EPMStartProcess = 1901;
615
+ EPMStopProcess = 1902;
616
+ EPMRestartProcess = 1903;
617
+
618
+ BaseGC = 2200;
619
+ GCSendClient = 2200;
620
+ AMRelayToGC = 2201;
621
+ GCUpdatePlayedState = 2202;
622
+ GCCmdRevive = 2203;
623
+ GCCmdBounce = 2204;
624
+ GCCmdForceBounce = 2205;
625
+ GCCmdDown = 2206;
626
+ GCCmdDeploy = 2207;
627
+ GCCmdDeployResponse = 2208;
628
+ GCCmdSwitch = 2209;
629
+ AMRefreshSessions = 2210;
630
+ GCUpdateGSState = 2211;
631
+ GCAchievementAwarded = 2212;
632
+ GCSystemMessage = 2213;
633
+ GCValidateSession = 2214;
634
+ GCValidateSessionResponse = 2215;
635
+ GCCmdStatus = 2216;
636
+ GCRegisterWebInterfaces = 2217; obsolete
637
+ GCRegisterWebInterfaces_Deprecated = 2217; obsolete
638
+ GCGetAccountDetails = 2218; obsolete
639
+ GCGetAccountDetails_DEPRECATED = 2218; obsolete
640
+ GCInterAppMessage = 2219;
641
+ GCGetEmailTemplate = 2220;
642
+ GCGetEmailTemplateResponse = 2221;
643
+ ISRelayToGCH = 2222;
644
+ GCHRelayClientToIS = 2223;
645
+ GCHUpdateSession = 2224;
646
+ GCHRequestUpdateSession = 2225;
647
+ GCHRequestStatus = 2226;
648
+ GCHRequestStatusResponse = 2227;
649
+
650
+ BaseP2P = 2500;
651
+ P2PIntroducerMessage = 2502;
652
+
653
+ BaseSM = 2900;
654
+ SMExpensiveReport = 2902;
655
+ SMHourlyReport = 2903;
656
+ SMFishingReport = 2904;
657
+ SMPartitionRenames = 2905;
658
+ SMMonitorSpace = 2906;
659
+ SMGetSchemaConversionResults = 2907;
660
+ SMGetSchemaConversionResultsResponse = 2908;
661
+
662
+ BaseTest = 3000;
663
+ FailServer = 3000;
664
+ JobHeartbeatTest = 3001;
665
+ JobHeartbeatTestResponse = 3002;
666
+
667
+ BaseFTSRange = 3100;
668
+ FTSGetBrowseCounts = 3101;
669
+ FTSGetBrowseCountsResponse = 3102;
670
+ FTSBrowseClans = 3103;
671
+ FTSBrowseClansResponse = 3104;
672
+ FTSSearchClansByLocation = 3105;
673
+ FTSSearchClansByLocationResponse = 3106;
674
+ FTSSearchPlayersByLocation = 3107;
675
+ FTSSearchPlayersByLocationResponse = 3108;
676
+ FTSClanDeleted = 3109;
677
+ FTSSearch = 3110;
678
+ FTSSearchResponse = 3111;
679
+ FTSSearchStatus = 3112;
680
+ FTSSearchStatusResponse = 3113;
681
+ FTSGetGSPlayStats = 3114;
682
+ FTSGetGSPlayStatsResponse = 3115;
683
+ FTSGetGSPlayStatsForServer = 3116;
684
+ FTSGetGSPlayStatsForServerResponse = 3117;
685
+ FTSReportIPUpdates = 3118;
686
+
687
+ BaseCCSRange = 3150;
688
+ CCSGetComments = 3151;
689
+ CCSGetCommentsResponse = 3152;
690
+ CCSAddComment = 3153;
691
+ CCSAddCommentResponse = 3154;
692
+ CCSDeleteComment = 3155;
693
+ CCSDeleteCommentResponse = 3156;
694
+ CCSPreloadComments = 3157;
695
+ CCSNotifyCommentCount = 3158;
696
+ CCSGetCommentsForNews = 3159;
697
+ CCSGetCommentsForNewsResponse = 3160;
698
+ CCSDeleteAllCommentsByAuthor = 3161;
699
+ CCSDeleteAllCommentsByAuthorResponse = 3162;
700
+
701
+ BaseLBSRange = 3200;
702
+ LBSSetScore = 3201;
703
+ LBSSetScoreResponse = 3202;
704
+ LBSFindOrCreateLB = 3203;
705
+ LBSFindOrCreateLBResponse = 3204;
706
+ LBSGetLBEntries = 3205;
707
+ LBSGetLBEntriesResponse = 3206;
708
+ LBSGetLBList = 3207;
709
+ LBSGetLBListResponse = 3208;
710
+ LBSSetLBDetails = 3209;
711
+ LBSDeleteLB = 3210;
712
+ LBSDeleteLBEntry = 3211;
713
+ LBSResetLB = 3212;
714
+
715
+ BaseOGS = 3400;
716
+ OGSBeginSession = 3401;
717
+ OGSBeginSessionResponse = 3402;
718
+ OGSEndSession = 3403;
719
+ OGSEndSessionResponse = 3404;
720
+ OGSWriteAppSessionRow = 3406;
721
+
722
+ BaseBRP = 3600;
723
+ BRPStartShippingJobs = 3601;
724
+ BRPProcessUSBankReports = 3602;
725
+ BRPProcessGCReports = 3603;
726
+ BRPProcessPPReports = 3604;
727
+ BRPSettleNOVA = 3605;
728
+ BRPSettleCB = 3606;
729
+ BRPCommitGC = 3607;
730
+ BRPCommitGCResponse = 3608;
731
+ BRPFindHungTransactions = 3609;
732
+ BRPCheckFinanceCloseOutDate = 3610;
733
+ BRPProcessLicenses = 3611;
734
+ BRPProcessLicensesResponse = 3612;
735
+ BRPRemoveExpiredPaymentData = 3613;
736
+ BRPRemoveExpiredPaymentDataResponse = 3614;
737
+ BRPConvertToCurrentKeys = 3615;
738
+ BRPConvertToCurrentKeysResponse = 3616;
739
+ BRPPruneCardUsageStats = 3617;
740
+ BRPPruneCardUsageStatsResponse = 3618;
741
+ BRPCheckActivationCodes = 3619;
742
+ BRPCheckActivationCodesResponse = 3620;
743
+
744
+ BaseAMRange2 = 4000;
745
+ AMCreateChat = 4001;
746
+ AMCreateChatResponse = 4002;
747
+ AMUpdateChatMetadata = 4003;
748
+ AMPublishChatMetadata = 4004;
749
+ AMSetProfileURL = 4005;
750
+ AMGetAccountEmailAddress = 4006;
751
+ AMGetAccountEmailAddressResponse = 4007;
752
+ AMRequestFriendData = 4008;
753
+ AMRouteToClients = 4009;
754
+ AMLeaveClan = 4010;
755
+ AMClanPermissions = 4011;
756
+ AMClanPermissionsResponse = 4012;
757
+ AMCreateClanEvent = 4013;
758
+ AMCreateClanEventResponse = 4014;
759
+ AMUpdateClanEvent = 4015;
760
+ AMUpdateClanEventResponse = 4016;
761
+ AMGetClanEvents = 4017;
762
+ AMGetClanEventsResponse = 4018;
763
+ AMDeleteClanEvent = 4019;
764
+ AMDeleteClanEventResponse = 4020;
765
+ AMSetClanPermissionSettings = 4021;
766
+ AMSetClanPermissionSettingsResponse = 4022;
767
+ AMGetClanPermissionSettings = 4023;
768
+ AMGetClanPermissionSettingsResponse = 4024;
769
+ AMPublishChatRoomInfo = 4025;
770
+ ClientChatRoomInfo = 4026;
771
+ AMCreateClanAnnouncement = 4027;
772
+ AMCreateClanAnnouncementResponse = 4028;
773
+ AMUpdateClanAnnouncement = 4029;
774
+ AMUpdateClanAnnouncementResponse = 4030;
775
+ AMGetClanAnnouncementsCount = 4031;
776
+ AMGetClanAnnouncementsCountResponse = 4032;
777
+ AMGetClanAnnouncements = 4033;
778
+ AMGetClanAnnouncementsResponse = 4034;
779
+ AMDeleteClanAnnouncement = 4035;
780
+ AMDeleteClanAnnouncementResponse = 4036;
781
+ AMGetSingleClanAnnouncement = 4037;
782
+ AMGetSingleClanAnnouncementResponse = 4038;
783
+ AMGetClanHistory = 4039;
784
+ AMGetClanHistoryResponse = 4040;
785
+ AMGetClanPermissionBits = 4041;
786
+ AMGetClanPermissionBitsResponse = 4042;
787
+ AMSetClanPermissionBits = 4043;
788
+ AMSetClanPermissionBitsResponse = 4044;
789
+ AMSessionInfoRequest = 4045;
790
+ AMSessionInfoResponse = 4046;
791
+ AMValidateWGToken = 4047;
792
+ AMGetSingleClanEvent = 4048;
793
+ AMGetSingleClanEventResponse = 4049;
794
+ AMGetClanRank = 4050;
795
+ AMGetClanRankResponse = 4051;
796
+ AMSetClanRank = 4052;
797
+ AMSetClanRankResponse = 4053;
798
+ AMGetClanPOTW = 4054;
799
+ AMGetClanPOTWResponse = 4055;
800
+ AMSetClanPOTW = 4056;
801
+ AMSetClanPOTWResponse = 4057;
802
+ AMRequestChatMetadata = 4058;
803
+ AMDumpUser = 4059;
804
+ AMKickUserFromClan = 4060;
805
+ AMAddFounderToClan = 4061;
806
+ AMValidateWGTokenResponse = 4062;
807
+ AMSetCommunityState = 4063;
808
+ AMSetAccountDetails = 4064;
809
+ AMGetChatBanList = 4065;
810
+ AMGetChatBanListResponse = 4066;
811
+ AMUnBanFromChat = 4067;
812
+ AMSetClanDetails = 4068;
813
+ AMGetAccountLinks = 4069;
814
+ AMGetAccountLinksResponse = 4070;
815
+ AMSetAccountLinks = 4071;
816
+ AMSetAccountLinksResponse = 4072;
817
+ AMGetUserGameStats = 4073;
818
+ AMGetUserGameStatsResponse = 4074;
819
+ AMCheckClanMembership = 4075;
820
+ AMGetClanMembers = 4076;
821
+ AMGetClanMembersResponse = 4077;
822
+ AMJoinPublicClan = 4078;
823
+ AMNotifyChatOfClanChange = 4079;
824
+ AMResubmitPurchase = 4080;
825
+ AMAddFriend = 4081;
826
+ AMAddFriendResponse = 4082;
827
+ AMRemoveFriend = 4083;
828
+ AMDumpClan = 4084;
829
+ AMChangeClanOwner = 4085;
830
+ AMCancelEasyCollect = 4086;
831
+ AMCancelEasyCollectResponse = 4087;
832
+ AMGetClanMembershipList = 4088;
833
+ AMGetClanMembershipListResponse = 4089;
834
+ AMClansInCommon = 4090;
835
+ AMClansInCommonResponse = 4091;
836
+ AMIsValidAccountID = 4092;
837
+ AMConvertClan = 4093;
838
+ AMGetGiftTargetListRelay = 4094;
839
+ AMWipeFriendsList = 4095;
840
+ AMSetIgnored = 4096;
841
+ AMClansInCommonCountResponse = 4097;
842
+ AMFriendsList = 4098;
843
+ AMFriendsListResponse = 4099;
844
+ AMFriendsInCommon = 4100;
845
+ AMFriendsInCommonResponse = 4101;
846
+ AMFriendsInCommonCountResponse = 4102;
847
+ AMClansInCommonCount = 4103;
848
+ AMChallengeVerdict = 4104;
849
+ AMChallengeNotification = 4105;
850
+ AMFindGSByIP = 4106;
851
+ AMFoundGSByIP = 4107;
852
+ AMGiftRevoked = 4108;
853
+ AMCreateAccountRecord = 4109;
854
+ AMUserClanList = 4110;
855
+ AMUserClanListResponse = 4111;
856
+ AMGetAccountDetails2 = 4112;
857
+ AMGetAccountDetailsResponse2 = 4113;
858
+ AMSetCommunityProfileSettings = 4114;
859
+ AMSetCommunityProfileSettingsResponse = 4115;
860
+ AMGetCommunityPrivacyState = 4116;
861
+ AMGetCommunityPrivacyStateResponse = 4117;
862
+ AMCheckClanInviteRateLimiting = 4118;
863
+ AMGetUserAchievementStatus = 4119;
864
+ AMGetIgnored = 4120;
865
+ AMGetIgnoredResponse = 4121;
866
+ AMSetIgnoredResponse = 4122;
867
+ AMSetFriendRelationshipNone = 4123;
868
+ AMGetFriendRelationship = 4124;
869
+ AMGetFriendRelationshipResponse = 4125;
870
+ AMServiceModulesCache = 4126;
871
+ AMServiceModulesCall = 4127;
872
+ AMServiceModulesCallResponse = 4128;
873
+ AMGetCaptchaDataForIP = 4129;
874
+ AMGetCaptchaDataForIPResponse = 4130;
875
+ AMValidateCaptchaDataForIP = 4131;
876
+ AMValidateCaptchaDataForIPResponse = 4132;
877
+ AMTrackFailedAuthByIP = 4133;
878
+ AMGetCaptchaDataByGID = 4134;
879
+ AMGetCaptchaDataByGIDResponse = 4135;
880
+ AMGetLobbyList = 4136;
881
+ AMGetLobbyListResponse = 4137;
882
+ AMGetLobbyMetadata = 4138;
883
+ AMGetLobbyMetadataResponse = 4139;
884
+ CommunityAddFriendNews = 4140;
885
+ AMAddClanNews = 4141;
886
+ AMWriteNews = 4142;
887
+ AMFindClanUser = 4143;
888
+ AMFindClanUserResponse = 4144;
889
+ AMBanFromChat = 4145;
890
+ AMGetUserHistoryResponse = 4146;
891
+ AMGetUserNewsSubscriptions = 4147;
892
+ AMGetUserNewsSubscriptionsResponse = 4148;
893
+ AMSetUserNewsSubscriptions = 4149;
894
+ AMGetUserNews = 4150;
895
+ AMGetUserNewsResponse = 4151;
896
+ AMSendQueuedEmails = 4152;
897
+ AMSetLicenseFlags = 4153;
898
+ AMGetUserHistory = 4154;
899
+ CommunityDeleteUserNews = 4155;
900
+ AMAllowUserFilesRequest = 4156;
901
+ AMAllowUserFilesResponse = 4157;
902
+ AMGetAccountStatus = 4158;
903
+ AMGetAccountStatusResponse = 4159;
904
+ AMEditBanReason = 4160;
905
+ AMCheckClanMembershipResponse = 4161;
906
+ AMProbeClanMembershipList = 4162;
907
+ AMProbeClanMembershipListResponse = 4163;
908
+ AMGetFriendsLobbies = 4165;
909
+ AMGetFriendsLobbiesResponse = 4166;
910
+ AMGetUserFriendNewsResponse = 4172;
911
+ CommunityGetUserFriendNews = 4173;
912
+ AMGetUserClansNewsResponse = 4174;
913
+ AMGetUserClansNews = 4175;
914
+ AMStoreInitPurchase = 4176;
915
+ AMStoreInitPurchaseResponse = 4177;
916
+ AMStoreGetFinalPrice = 4178;
917
+ AMStoreGetFinalPriceResponse = 4179;
918
+ AMStoreCompletePurchase = 4180;
919
+ AMStoreCancelPurchase = 4181;
920
+ AMStorePurchaseResponse = 4182;
921
+ AMCreateAccountRecordInSteam3 = 4183;
922
+ AMGetPreviousCBAccount = 4184;
923
+ AMGetPreviousCBAccountResponse = 4185;
924
+ AMUpdateBillingAddress = 4186;
925
+ AMUpdateBillingAddressResponse = 4187;
926
+ AMGetBillingAddress = 4188;
927
+ AMGetBillingAddressResponse = 4189;
928
+ AMGetUserLicenseHistory = 4190;
929
+ AMGetUserLicenseHistoryResponse = 4191;
930
+ AMSupportChangePassword = 4194;
931
+ AMSupportChangeEmail = 4195;
932
+ AMSupportChangeSecretQA = 4196;
933
+ AMResetUserVerificationGSByIP = 4197;
934
+ AMUpdateGSPlayStats = 4198;
935
+ AMSupportEnableOrDisable = 4199;
936
+ AMGetComments = 4200;
937
+ AMGetCommentsResponse = 4201;
938
+ AMAddComment = 4202;
939
+ AMAddCommentResponse = 4203;
940
+ AMDeleteComment = 4204;
941
+ AMDeleteCommentResponse = 4205;
942
+ AMGetPurchaseStatus = 4206;
943
+ AMSupportIsAccountEnabled = 4209;
944
+ AMSupportIsAccountEnabledResponse = 4210;
945
+ AMGetUserStats = 4211;
946
+ AMSupportKickSession = 4212;
947
+ AMGSSearch = 4213;
948
+ MarketingMessageUpdate = 4216;
949
+ AMRouteFriendMsg = 4219;
950
+ AMTicketAuthRequestOrResponse = 4220;
951
+ AMVerifyDepotManagementRights = 4222;
952
+ AMVerifyDepotManagementRightsResponse = 4223;
953
+ AMAddFreeLicense = 4224;
954
+ AMGetUserFriendsMinutesPlayed = 4225;
955
+ AMGetUserFriendsMinutesPlayedResponse = 4226;
956
+ AMGetUserMinutesPlayed = 4227;
957
+ AMGetUserMinutesPlayedResponse = 4228;
958
+ AMValidateEmailLink = 4231;
959
+ AMValidateEmailLinkResponse = 4232;
960
+ AMAddUsersToMarketingTreatment = 4234;
961
+ AMStoreUserStats = 4236;
962
+ AMGetUserGameplayInfo = 4237;
963
+ AMGetUserGameplayInfoResponse = 4238;
964
+ AMGetCardList = 4239;
965
+ AMGetCardListResponse = 4240;
966
+ AMDeleteStoredCard = 4241;
967
+ AMRevokeLegacyGameKeys = 4242;
968
+ AMGetWalletDetails = 4244;
969
+ AMGetWalletDetailsResponse = 4245;
970
+ AMDeleteStoredPaymentInfo = 4246;
971
+ AMGetStoredPaymentSummary = 4247;
972
+ AMGetStoredPaymentSummaryResponse = 4248;
973
+ AMGetWalletConversionRate = 4249;
974
+ AMGetWalletConversionRateResponse = 4250;
975
+ AMConvertWallet = 4251;
976
+ AMConvertWalletResponse = 4252;
977
+ AMRelayGetFriendsWhoPlayGame = 4253;
978
+ AMRelayGetFriendsWhoPlayGameResponse = 4254;
979
+ AMSetPreApproval = 4255;
980
+ AMSetPreApprovalResponse = 4256;
981
+ AMMarketingTreatmentUpdate = 4257;
982
+ AMCreateRefund = 4258;
983
+ AMCreateRefundResponse = 4259;
984
+ AMCreateChargeback = 4260;
985
+ AMCreateChargebackResponse = 4261;
986
+ AMCreateDispute = 4262;
987
+ AMCreateDisputeResponse = 4263;
988
+ AMClearDispute = 4264;
989
+ AMClearDisputeResponse = 4265;
990
+ AMPlayerNicknameList = 4266;
991
+ AMPlayerNicknameListResponse = 4267;
992
+ AMSetDRMTestConfig = 4268;
993
+ AMGetUserCurrentGameInfo = 4269;
994
+ AMGetUserCurrentGameInfoResponse = 4270;
995
+ AMGetGSPlayerList = 4271;
996
+ AMGetGSPlayerListResponse = 4272;
997
+ AMUpdatePersonaStateCache = 4275;
998
+ AMGetGameMembers = 4276;
999
+ AMGetGameMembersResponse = 4277;
1000
+ AMGetSteamIDForMicroTxn = 4278;
1001
+ AMGetSteamIDForMicroTxnResponse = 4279;
1002
+ AMAddPublisherUser = 4280;
1003
+ AMRemovePublisherUser = 4281;
1004
+ AMGetUserLicenseList = 4282;
1005
+ AMGetUserLicenseListResponse = 4283;
1006
+ AMReloadGameGroupPolicy = 4284;
1007
+ AMAddFreeLicenseResponse = 4285;
1008
+ AMVACStatusUpdate = 4286;
1009
+ AMGetAccountDetails = 4287;
1010
+ AMGetAccountDetailsResponse = 4288;
1011
+ AMGetPlayerLinkDetails = 4289;
1012
+ AMGetPlayerLinkDetailsResponse = 4290;
1013
+ AMSubscribeToPersonaFeed = 4291;
1014
+ AMGetUserVacBanList = 4292;
1015
+ AMGetUserVacBanListResponse = 4293;
1016
+ AMGetAccountFlagsForWGSpoofing = 4294;
1017
+ AMGetAccountFlagsForWGSpoofingResponse = 4295;
1018
+ AMGetFriendsWishlistInfo = 4296;
1019
+ AMGetFriendsWishlistInfoResponse = 4297;
1020
+ AMGetClanOfficers = 4298;
1021
+ AMGetClanOfficersResponse = 4299;
1022
+ AMNameChange = 4300;
1023
+ AMGetNameHistory = 4301;
1024
+ AMGetNameHistoryResponse = 4302;
1025
+ AMUpdateProviderStatus = 4305;
1026
+ AMClearPersonaMetadataBlob = 4306;
1027
+ AMSupportRemoveAccountSecurity = 4307;
1028
+ AMIsAccountInCaptchaGracePeriod = 4308;
1029
+ AMIsAccountInCaptchaGracePeriodResponse = 4309;
1030
+ AMAccountPS3Unlink = 4310;
1031
+ AMAccountPS3UnlinkResponse = 4311;
1032
+ AMStoreUserStatsResponse = 4312;
1033
+ AMGetAccountPSNInfo = 4313;
1034
+ AMGetAccountPSNInfoResponse = 4314;
1035
+ AMAuthenticatedPlayerList = 4315;
1036
+ AMGetUserGifts = 4316;
1037
+ AMGetUserGiftsResponse = 4317;
1038
+ AMTransferLockedGifts = 4320;
1039
+ AMTransferLockedGiftsResponse = 4321;
1040
+ AMPlayerHostedOnGameServer = 4322;
1041
+ AMGetAccountBanInfo = 4323;
1042
+ AMGetAccountBanInfoResponse = 4324;
1043
+ AMRecordBanEnforcement = 4325;
1044
+ AMRollbackGiftTransfer = 4326;
1045
+ AMRollbackGiftTransferResponse = 4327;
1046
+ AMHandlePendingTransaction = 4328;
1047
+ AMRequestClanDetails = 4329;
1048
+ AMDeleteStoredPaypalAgreement = 4330;
1049
+ AMGameServerUpdate = 4331;
1050
+ AMGameServerRemove = 4332;
1051
+ AMGetPaypalAgreements = 4333;
1052
+ AMGetPaypalAgreementsResponse = 4334;
1053
+ AMGameServerPlayerCompatibilityCheck = 4335;
1054
+ AMGameServerPlayerCompatibilityCheckResponse = 4336;
1055
+ AMRenewLicense = 4337;
1056
+ AMGetAccountCommunityBanInfo = 4338;
1057
+ AMGetAccountCommunityBanInfoResponse = 4339;
1058
+ AMGameServerAccountChangePassword = 4340;
1059
+ AMGameServerAccountDeleteAccount = 4341;
1060
+ AMRenewAgreement = 4342;
1061
+ AMSendEmail = 4343;
1062
+ AMXsollaPayment = 4344;
1063
+ AMXsollaPaymentResponse = 4345;
1064
+ AMAcctAllowedToPurchase = 4346;
1065
+ AMAcctAllowedToPurchaseResponse = 4347;
1066
+ AMSwapKioskDeposit = 4348;
1067
+ AMSwapKioskDepositResponse = 4349;
1068
+ AMSetUserGiftUnowned = 4350;
1069
+ AMSetUserGiftUnownedResponse = 4351;
1070
+ AMClaimUnownedUserGift = 4352;
1071
+ AMClaimUnownedUserGiftResponse = 4353;
1072
+ AMSetClanName = 4354;
1073
+ AMSetClanNameResponse = 4355;
1074
+ AMGrantCoupon = 4356;
1075
+ AMGrantCouponResponse = 4357;
1076
+ AMIsPackageRestrictedInUserCountry = 4358;
1077
+ AMIsPackageRestrictedInUserCountryResponse = 4359;
1078
+ AMHandlePendingTransactionResponse = 4360;
1079
+ AMGrantGuestPasses2 = 4361;
1080
+ AMGrantGuestPasses2Response = 4362;
1081
+ AMSessionQuery = 4363;
1082
+ AMSessionQueryResponse = 4364;
1083
+ AMGetPlayerBanDetails = 4365;
1084
+ AMGetPlayerBanDetailsResponse = 4366;
1085
+ AMFinalizePurchase = 4367;
1086
+ AMFinalizePurchaseResponse = 4368;
1087
+ AMPersonaChangeResponse = 4372;
1088
+ AMGetClanDetailsForForumCreation = 4373;
1089
+ AMGetClanDetailsForForumCreationResponse = 4374;
1090
+ AMGetPendingNotificationCount = 4375;
1091
+ AMGetPendingNotificationCountResponse = 4376;
1092
+ AMPasswordHashUpgrade = 4377;
1093
+ AMMoPayPayment = 4378;
1094
+ AMMoPayPaymentResponse = 4379;
1095
+ AMBoaCompraPayment = 4380;
1096
+ AMBoaCompraPaymentResponse = 4381;
1097
+ AMExpireCaptchaByGID = 4382;
1098
+ AMCompleteExternalPurchase = 4383;
1099
+ AMCompleteExternalPurchaseResponse = 4384;
1100
+ AMResolveNegativeWalletCredits = 4385;
1101
+ AMResolveNegativeWalletCreditsResponse = 4386;
1102
+ AMPayelpPayment = 4387;
1103
+ AMPayelpPaymentResponse = 4388;
1104
+ AMPlayerGetClanBasicDetails = 4389;
1105
+ AMPlayerGetClanBasicDetailsResponse = 4390;
1106
+
1107
+ AMTwoFactorRecoverAuthenticatorRequest = 4402;
1108
+ AMTwoFactorRecoverAuthenticatorResponse = 4403;
1109
+ AMValidatePasswordResetCodeAndSendSmsRequest = 4406;
1110
+ AMValidatePasswordResetCodeAndSendSmsResponse = 4407;
1111
+ AMGetAccountResetDetailsRequest = 4408;
1112
+ AMGetAccountResetDetailsResponse = 4409;
1113
+
1114
+ BasePSRange = 5000;
1115
+ PSCreateShoppingCart = 5001;
1116
+ PSCreateShoppingCartResponse = 5002;
1117
+ PSIsValidShoppingCart = 5003;
1118
+ PSIsValidShoppingCartResponse = 5004;
1119
+ PSAddPackageToShoppingCart = 5005;
1120
+ PSAddPackageToShoppingCartResponse = 5006;
1121
+ PSRemoveLineItemFromShoppingCart = 5007;
1122
+ PSRemoveLineItemFromShoppingCartResponse = 5008;
1123
+ PSGetShoppingCartContents = 5009;
1124
+ PSGetShoppingCartContentsResponse = 5010;
1125
+ PSAddWalletCreditToShoppingCart = 5011;
1126
+ PSAddWalletCreditToShoppingCartResponse = 5012;
1127
+
1128
+ BaseUFSRange = 5200;
1129
+ ClientUFSUploadFileRequest = 5202;
1130
+ ClientUFSUploadFileResponse = 5203;
1131
+ ClientUFSUploadFileChunk = 5204;
1132
+ ClientUFSUploadFileFinished = 5205;
1133
+ ClientUFSGetFileListForApp = 5206;
1134
+ ClientUFSGetFileListForAppResponse = 5207;
1135
+ ClientUFSDownloadRequest = 5210;
1136
+ ClientUFSDownloadResponse = 5211;
1137
+ ClientUFSDownloadChunk = 5212;
1138
+ ClientUFSLoginRequest = 5213;
1139
+ ClientUFSLoginResponse = 5214;
1140
+ UFSReloadPartitionInfo = 5215;
1141
+ ClientUFSTransferHeartbeat = 5216;
1142
+ UFSSynchronizeFile = 5217;
1143
+ UFSSynchronizeFileResponse = 5218;
1144
+ ClientUFSDeleteFileRequest = 5219;
1145
+ ClientUFSDeleteFileResponse = 5220;
1146
+ UFSDownloadRequest = 5221;
1147
+ UFSDownloadResponse = 5222;
1148
+ UFSDownloadChunk = 5223;
1149
+ ClientUFSGetUGCDetails = 5226;
1150
+ ClientUFSGetUGCDetailsResponse = 5227;
1151
+ UFSUpdateFileFlags = 5228;
1152
+ UFSUpdateFileFlagsResponse = 5229;
1153
+ ClientUFSGetSingleFileInfo = 5230;
1154
+ ClientUFSGetSingleFileInfoResponse = 5231;
1155
+ ClientUFSShareFile = 5232;
1156
+ ClientUFSShareFileResponse = 5233;
1157
+ UFSReloadAccount = 5234;
1158
+ UFSReloadAccountResponse = 5235;
1159
+ UFSUpdateRecordBatched = 5236;
1160
+ UFSUpdateRecordBatchedResponse = 5237;
1161
+ UFSMigrateFile = 5238;
1162
+ UFSMigrateFileResponse = 5239;
1163
+ UFSGetUGCURLs = 5240;
1164
+ UFSGetUGCURLsResponse = 5241;
1165
+ UFSHttpUploadFileFinishRequest = 5242;
1166
+ UFSHttpUploadFileFinishResponse = 5243;
1167
+ UFSDownloadStartRequest = 5244;
1168
+ UFSDownloadStartResponse = 5245;
1169
+ UFSDownloadChunkRequest = 5246;
1170
+ UFSDownloadChunkResponse = 5247;
1171
+ UFSDownloadFinishRequest = 5248;
1172
+ UFSDownloadFinishResponse = 5249;
1173
+ UFSFlushURLCache = 5250;
1174
+ UFSUploadCommit = 5251;
1175
+ UFSUploadCommitResponse = 5252;
1176
+
1177
+ BaseClient2 = 5400;
1178
+ ClientRequestForgottenPasswordEmail = 5401;
1179
+ ClientRequestForgottenPasswordEmailResponse = 5402;
1180
+ ClientCreateAccountResponse = 5403;
1181
+ ClientResetForgottenPassword = 5404;
1182
+ ClientResetForgottenPasswordResponse = 5405;
1183
+ ClientCreateAccount2 = 5406;
1184
+ ClientInformOfResetForgottenPassword = 5407;
1185
+ ClientInformOfResetForgottenPasswordResponse = 5408;
1186
+ ClientAnonUserLogOn_Deprecated = 5409; obsolete
1187
+ ClientGamesPlayedWithDataBlob = 5410;
1188
+ ClientUpdateUserGameInfo = 5411;
1189
+ ClientFileToDownload = 5412;
1190
+ ClientFileToDownloadResponse = 5413;
1191
+ ClientLBSSetScore = 5414;
1192
+ ClientLBSSetScoreResponse = 5415;
1193
+ ClientLBSFindOrCreateLB = 5416;
1194
+ ClientLBSFindOrCreateLBResponse = 5417;
1195
+ ClientLBSGetLBEntries = 5418;
1196
+ ClientLBSGetLBEntriesResponse = 5419;
1197
+ ClientMarketingMessageUpdate = 5420; obsolete
1198
+ ClientChatDeclined = 5426;
1199
+ ClientFriendMsgIncoming = 5427;
1200
+ ClientAuthList_Deprecated = 5428; obsolete
1201
+ ClientTicketAuthComplete = 5429;
1202
+ ClientIsLimitedAccount = 5430;
1203
+ ClientRequestAuthList = 5431;
1204
+ ClientAuthList = 5432;
1205
+ ClientStat = 5433;
1206
+ ClientP2PConnectionInfo = 5434;
1207
+ ClientP2PConnectionFailInfo = 5435;
1208
+ ClientGetNumberOfCurrentPlayers = 5436;
1209
+ ClientGetNumberOfCurrentPlayersResponse = 5437;
1210
+ ClientGetDepotDecryptionKey = 5438;
1211
+ ClientGetDepotDecryptionKeyResponse = 5439;
1212
+ GSPerformHardwareSurvey = 5440;
1213
+ ClientGetAppBetaPasswords = 5441;
1214
+ ClientGetAppBetaPasswordsResponse = 5442;
1215
+ ClientEnableTestLicense = 5443;
1216
+ ClientEnableTestLicenseResponse = 5444;
1217
+ ClientDisableTestLicense = 5445;
1218
+ ClientDisableTestLicenseResponse = 5446;
1219
+ ClientRequestValidationMail = 5448;
1220
+ ClientRequestValidationMailResponse = 5449;
1221
+ ClientCheckAppBetaPassword = 5450;
1222
+ ClientCheckAppBetaPasswordResponse = 5451;
1223
+ ClientToGC = 5452;
1224
+ ClientFromGC = 5453;
1225
+ ClientRequestChangeMail = 5454;
1226
+ ClientRequestChangeMailResponse = 5455;
1227
+ ClientEmailAddrInfo = 5456;
1228
+ ClientPasswordChange3 = 5457;
1229
+ ClientEmailChange3 = 5458;
1230
+ ClientPersonalQAChange3 = 5459;
1231
+ ClientResetForgottenPassword3 = 5460;
1232
+ ClientRequestForgottenPasswordEmail3 = 5461;
1233
+ ClientCreateAccount3 = 5462; obsolete
1234
+ ClientNewLoginKey = 5463;
1235
+ ClientNewLoginKeyAccepted = 5464;
1236
+ ClientLogOnWithHash_Deprecated = 5465; obsolete
1237
+ ClientStoreUserStats2 = 5466;
1238
+ ClientStatsUpdated = 5467;
1239
+ ClientActivateOEMLicense = 5468;
1240
+ ClientRegisterOEMMachine = 5469;
1241
+ ClientRegisterOEMMachineResponse = 5470;
1242
+ ClientRequestedClientStats = 5480;
1243
+ ClientStat2Int32 = 5481;
1244
+ ClientStat2 = 5482;
1245
+ ClientVerifyPassword = 5483;
1246
+ ClientVerifyPasswordResponse = 5484;
1247
+ ClientDRMDownloadRequest = 5485;
1248
+ ClientDRMDownloadResponse = 5486;
1249
+ ClientDRMFinalResult = 5487;
1250
+ ClientGetFriendsWhoPlayGame = 5488;
1251
+ ClientGetFriendsWhoPlayGameResponse = 5489;
1252
+ ClientOGSBeginSession = 5490;
1253
+ ClientOGSBeginSessionResponse = 5491;
1254
+ ClientOGSEndSession = 5492;
1255
+ ClientOGSEndSessionResponse = 5493;
1256
+ ClientOGSWriteRow = 5494;
1257
+ ClientDRMTest = 5495;
1258
+ ClientDRMTestResult = 5496;
1259
+ ClientServerUnavailable = 5500;
1260
+ ClientServersAvailable = 5501;
1261
+ ClientRegisterAuthTicketWithCM = 5502;
1262
+ ClientGCMsgFailed = 5503;
1263
+ ClientMicroTxnAuthRequest = 5504;
1264
+ ClientMicroTxnAuthorize = 5505;
1265
+ ClientMicroTxnAuthorizeResponse = 5506;
1266
+ ClientAppMinutesPlayedData = 5507;
1267
+ ClientGetMicroTxnInfo = 5508;
1268
+ ClientGetMicroTxnInfoResponse = 5509;
1269
+ ClientMarketingMessageUpdate2 = 5510;
1270
+ ClientDeregisterWithServer = 5511;
1271
+ ClientSubscribeToPersonaFeed = 5512;
1272
+ ClientLogon = 5514;
1273
+ ClientGetClientDetails = 5515;
1274
+ ClientGetClientDetailsResponse = 5516;
1275
+ ClientReportOverlayDetourFailure = 5517;
1276
+ ClientGetClientAppList = 5518;
1277
+ ClientGetClientAppListResponse = 5519;
1278
+ ClientInstallClientApp = 5520;
1279
+ ClientInstallClientAppResponse = 5521;
1280
+ ClientUninstallClientApp = 5522;
1281
+ ClientUninstallClientAppResponse = 5523;
1282
+ ClientSetClientAppUpdateState = 5524;
1283
+ ClientSetClientAppUpdateStateResponse = 5525;
1284
+ ClientRequestEncryptedAppTicket = 5526;
1285
+ ClientRequestEncryptedAppTicketResponse = 5527;
1286
+ ClientWalletInfoUpdate = 5528;
1287
+ ClientLBSSetUGC = 5529;
1288
+ ClientLBSSetUGCResponse = 5530;
1289
+ ClientAMGetClanOfficers = 5531;
1290
+ ClientAMGetClanOfficersResponse = 5532;
1291
+ ClientCheckFileSignature = 5533;
1292
+ ClientCheckFileSignatureResponse = 5534;
1293
+ ClientFriendProfileInfo = 5535;
1294
+ ClientFriendProfileInfoResponse = 5536;
1295
+ ClientUpdateMachineAuth = 5537;
1296
+ ClientUpdateMachineAuthResponse = 5538;
1297
+ ClientReadMachineAuth = 5539;
1298
+ ClientReadMachineAuthResponse = 5540;
1299
+ ClientRequestMachineAuth = 5541;
1300
+ ClientRequestMachineAuthResponse = 5542;
1301
+ ClientScreenshotsChanged = 5543;
1302
+ ClientEmailChange4 = 5544;
1303
+ ClientEmailChangeResponse4 = 5545;
1304
+ ClientGetCDNAuthToken = 5546;
1305
+ ClientGetCDNAuthTokenResponse = 5547;
1306
+ ClientDownloadRateStatistics = 5548;
1307
+ ClientRequestAccountData = 5549;
1308
+ ClientRequestAccountDataResponse = 5550;
1309
+ ClientResetForgottenPassword4 = 5551;
1310
+ ClientHideFriend = 5552;
1311
+ ClientFriendsGroupsList = 5553;
1312
+ ClientGetClanActivityCounts = 5554;
1313
+ ClientGetClanActivityCountsResponse = 5555;
1314
+ ClientOGSReportString = 5556;
1315
+ ClientOGSReportBug = 5557;
1316
+ ClientSentLogs = 5558;
1317
+ ClientLogonGameServer = 5559;
1318
+ AMClientCreateFriendsGroup = 5560;
1319
+ AMClientCreateFriendsGroupResponse = 5561;
1320
+ AMClientDeleteFriendsGroup = 5562;
1321
+ AMClientDeleteFriendsGroupResponse = 5563;
1322
+ AMClientRenameFriendsGroup = 5564;
1323
+ AMClientRenameFriendsGroupResponse = 5565;
1324
+ AMClientAddFriendToGroup = 5566;
1325
+ AMClientAddFriendToGroupResponse = 5567;
1326
+ AMClientRemoveFriendFromGroup = 5568;
1327
+ AMClientRemoveFriendFromGroupResponse = 5569;
1328
+ ClientAMGetPersonaNameHistory = 5570;
1329
+ ClientAMGetPersonaNameHistoryResponse = 5571;
1330
+ ClientRequestFreeLicense = 5572;
1331
+ ClientRequestFreeLicenseResponse = 5573;
1332
+ ClientDRMDownloadRequestWithCrashData = 5574;
1333
+ ClientAuthListAck = 5575;
1334
+ ClientItemAnnouncements = 5576;
1335
+ ClientRequestItemAnnouncements = 5577;
1336
+ ClientFriendMsgEchoToSender = 5578;
1337
+ ClientChangeSteamGuardOptions = 5579; obsolete
1338
+ ClientChangeSteamGuardOptionsResponse = 5580; obsolete
1339
+ ClientOGSGameServerPingSample = 5581;
1340
+ ClientCommentNotifications = 5582;
1341
+ ClientRequestCommentNotifications = 5583;
1342
+ ClientPersonaChangeResponse = 5584;
1343
+ ClientRequestWebAPIAuthenticateUserNonce = 5585;
1344
+ ClientRequestWebAPIAuthenticateUserNonceResponse = 5586;
1345
+ ClientPlayerNicknameList = 5587;
1346
+ AMClientSetPlayerNickname = 5588;
1347
+ AMClientSetPlayerNicknameResponse = 5589;
1348
+ ClientRequestOAuthTokenForApp = 5590; obsolete
1349
+ ClientRequestOAuthTokenForAppResponse = 5591; obsolete
1350
+ ClientCreateAccountProto = 5590;
1351
+ ClientCreateAccountProtoResponse = 5591;
1352
+ ClientGetNumberOfCurrentPlayersDP = 5592;
1353
+ ClientGetNumberOfCurrentPlayersDPResponse = 5593;
1354
+ ClientServiceMethod = 5594;
1355
+ ClientServiceMethodResponse = 5595;
1356
+ ClientFriendUserStatusPublished = 5596;
1357
+ ClientCurrentUIMode = 5597;
1358
+ ClientVanityURLChangedNotification = 5598;
1359
+ ClientUserNotifications = 5599;
1360
+
1361
+ BaseDFS = 5600;
1362
+ DFSGetFile = 5601;
1363
+ DFSInstallLocalFile = 5602;
1364
+ DFSConnection = 5603;
1365
+ DFSConnectionReply = 5604;
1366
+ ClientDFSAuthenticateRequest = 5605;
1367
+ ClientDFSAuthenticateResponse = 5606;
1368
+ ClientDFSEndSession = 5607;
1369
+ DFSPurgeFile = 5608;
1370
+ DFSRouteFile = 5609;
1371
+ DFSGetFileFromServer = 5610;
1372
+ DFSAcceptedResponse = 5611;
1373
+ DFSRequestPingback = 5612;
1374
+ DFSRecvTransmitFile = 5613;
1375
+ DFSSendTransmitFile = 5614;
1376
+ DFSRequestPingback2 = 5615;
1377
+ DFSResponsePingback2 = 5616;
1378
+ ClientDFSDownloadStatus = 5617;
1379
+ DFSStartTransfer = 5618;
1380
+ DFSTransferComplete = 5619;
1381
+
1382
+ BaseMDS = 5800;
1383
+ ClientMDSLoginRequest = 5801; obsolete
1384
+ ClientMDSLoginResponse = 5802; obsolete
1385
+ ClientMDSUploadManifestRequest = 5803; obsolete
1386
+ ClientMDSUploadManifestResponse = 5804; obsolete
1387
+ ClientMDSTransmitManifestDataChunk = 5805; obsolete
1388
+ ClientMDSHeartbeat = 5806; obsolete
1389
+ ClientMDSUploadDepotChunks = 5807; obsolete
1390
+ ClientMDSUploadDepotChunksResponse = 5808; obsolete
1391
+ ClientMDSInitDepotBuildRequest = 5809; obsolete
1392
+ ClientMDSInitDepotBuildResponse = 5810; obsolete
1393
+ AMToMDSGetDepotDecryptionKey = 5812;
1394
+ MDSToAMGetDepotDecryptionKeyResponse = 5813;
1395
+ MDSGetVersionsForDepot = 5814;
1396
+ MDSGetVersionsForDepotResponse = 5815;
1397
+ MDSSetPublicVersionForDepot = 5816; obsolete
1398
+ MDSSetPublicVersionForDepotResponse = 5817; obsolete
1399
+ ClientMDSInitWorkshopBuildRequest = 5816; obsolete
1400
+ ClientMDSInitWorkshopBuildResponse = 5817; obsolete
1401
+ ClientMDSGetDepotManifest = 5818; obsolete
1402
+ ClientMDSGetDepotManifestResponse = 5819; obsolete
1403
+ ClientMDSGetDepotManifestChunk = 5820; obsolete
1404
+ ClientMDSUploadRateTest = 5823; obsolete
1405
+ ClientMDSUploadRateTestResponse = 5824; obsolete
1406
+ MDSDownloadDepotChunksAck = 5825;
1407
+ MDSContentServerStatsBroadcast = 5826;
1408
+ MDSContentServerConfigRequest = 5827;
1409
+ MDSContentServerConfig = 5828;
1410
+ MDSGetDepotManifest = 5829;
1411
+ MDSGetDepotManifestResponse = 5830;
1412
+ MDSGetDepotManifestChunk = 5831;
1413
+ MDSGetDepotChunk = 5832;
1414
+ MDSGetDepotChunkResponse = 5833;
1415
+ MDSGetDepotChunkChunk = 5834;
1416
+ MDSUpdateContentServerConfig = 5835;
1417
+ MDSGetServerListForUser = 5836;
1418
+ MDSGetServerListForUserResponse = 5837;
1419
+ ClientMDSRegisterAppBuild = 5838; obsolete
1420
+ ClientMDSRegisterAppBuildResponse = 5839; obsolete
1421
+ ClientMDSSetAppBuildLive = 5840;
1422
+ ClientMDSSetAppBuildLiveResponse = 5841;
1423
+ ClientMDSGetPrevDepotBuild = 5842;
1424
+ ClientMDSGetPrevDepotBuildResponse = 5843;
1425
+ MDSToCSFlushChunk = 5844;
1426
+ ClientMDSSignInstallScript = 5845; obsolete
1427
+ ClientMDSSignInstallScriptResponse = 5846; obsolete
1428
+
1429
+ CSBase = 6200;
1430
+ CSPing = 6201;
1431
+ CSPingResponse = 6202;
1432
+
1433
+ GMSBase = 6400;
1434
+ GMSGameServerReplicate = 6401;
1435
+ ClientGMSServerQuery = 6403;
1436
+ GMSClientServerQueryResponse = 6404;
1437
+ AMGMSGameServerUpdate = 6405;
1438
+ AMGMSGameServerRemove = 6406;
1439
+ GameServerOutOfDate = 6407;
1440
+
1441
+ ClientAuthorizeLocalDeviceRequest = 6501;
1442
+ ClientAuthorizeLocalDevice = 6502;
1443
+ ClientDeauthorizeDeviceRequest = 6503;
1444
+ ClientDeauthorizeDevice = 6504;
1445
+ ClientUseLocalDeviceAuthorizations = 6505;
1446
+ ClientGetAuthorizedDevices = 6506;
1447
+ ClientGetAuthorizedDevicesResponse = 6507;
1448
+
1449
+ MMSBase = 6600;
1450
+ ClientMMSCreateLobby = 6601;
1451
+ ClientMMSCreateLobbyResponse = 6602;
1452
+ ClientMMSJoinLobby = 6603;
1453
+ ClientMMSJoinLobbyResponse = 6604;
1454
+ ClientMMSLeaveLobby = 6605;
1455
+ ClientMMSLeaveLobbyResponse = 6606;
1456
+ ClientMMSGetLobbyList = 6607;
1457
+ ClientMMSGetLobbyListResponse = 6608;
1458
+ ClientMMSSetLobbyData = 6609;
1459
+ ClientMMSSetLobbyDataResponse = 6610;
1460
+ ClientMMSGetLobbyData = 6611;
1461
+ ClientMMSLobbyData = 6612;
1462
+ ClientMMSSendLobbyChatMsg = 6613;
1463
+ ClientMMSLobbyChatMsg = 6614;
1464
+ ClientMMSSetLobbyOwner = 6615;
1465
+ ClientMMSSetLobbyOwnerResponse = 6616;
1466
+ ClientMMSSetLobbyGameServer = 6617;
1467
+ ClientMMSLobbyGameServerSet = 6618;
1468
+ ClientMMSUserJoinedLobby = 6619;
1469
+ ClientMMSUserLeftLobby = 6620;
1470
+ ClientMMSInviteToLobby = 6621;
1471
+ ClientMMSFlushFrenemyListCache = 6622;
1472
+ ClientMMSFlushFrenemyListCacheResponse = 6623;
1473
+ ClientMMSSetLobbyLinked = 6624;
1474
+
1475
+ NonStdMsgBase = 6800;
1476
+ NonStdMsgMemcached = 6801;
1477
+ NonStdMsgHTTPServer = 6802;
1478
+ NonStdMsgHTTPClient = 6803;
1479
+ NonStdMsgWGResponse = 6804;
1480
+ NonStdMsgPHPSimulator = 6805;
1481
+ NonStdMsgChase = 6806;
1482
+ NonStdMsgDFSTransfer = 6807;
1483
+ NonStdMsgTests = 6808;
1484
+ NonStdMsgUMQpipeAAPL = 6809;
1485
+ NonStdMsgSyslog = 6810;
1486
+ NonStdMsgLogsink = 6811;
1487
+
1488
+ UDSBase = 7000;
1489
+ ClientUDSP2PSessionStarted = 7001;
1490
+ ClientUDSP2PSessionEnded = 7002;
1491
+ UDSRenderUserAuth = 7003;
1492
+ UDSRenderUserAuthResponse = 7004;
1493
+ ClientUDSInviteToGame = 7005;
1494
+ UDSFindSession = 7006;
1495
+ UDSFindSessionResponse = 7007;
1496
+
1497
+ MPASBase = 7100;
1498
+ MPASVacBanReset = 7101;
1499
+
1500
+ KGSBase = 7200;
1501
+ KGSAllocateKeyRange = 7201;
1502
+ KGSAllocateKeyRangeResponse = 7202;
1503
+ KGSGenerateKeys = 7203;
1504
+ KGSGenerateKeysResponse = 7204;
1505
+ KGSRemapKeys = 7205;
1506
+ KGSRemapKeysResponse = 7206;
1507
+ KGSGenerateGameStopWCKeys = 7207;
1508
+ KGSGenerateGameStopWCKeysResponse = 7208;
1509
+
1510
+ UCMBase = 7300;
1511
+ ClientUCMAddScreenshot = 7301;
1512
+ ClientUCMAddScreenshotResponse = 7302;
1513
+ UCMValidateObjectExists = 7303;
1514
+ UCMValidateObjectExistsResponse = 7304;
1515
+ UCMResetCommunityContent = 7307;
1516
+ UCMResetCommunityContentResponse = 7308;
1517
+ ClientUCMDeleteScreenshot = 7309;
1518
+ ClientUCMDeleteScreenshotResponse = 7310;
1519
+ ClientUCMPublishFile = 7311;
1520
+ ClientUCMPublishFileResponse = 7312;
1521
+ ClientUCMGetPublishedFileDetails = 7313; obsolete
1522
+ ClientUCMGetPublishedFileDetailsResponse = 7314; obsolete
1523
+ ClientUCMDeletePublishedFile = 7315;
1524
+ ClientUCMDeletePublishedFileResponse = 7316;
1525
+ ClientUCMEnumerateUserPublishedFiles = 7317;
1526
+ ClientUCMEnumerateUserPublishedFilesResponse = 7318;
1527
+ ClientUCMSubscribePublishedFile = 7319; obsolete
1528
+ ClientUCMSubscribePublishedFileResponse = 7320; obsolete
1529
+ ClientUCMEnumerateUserSubscribedFiles = 7321;
1530
+ ClientUCMEnumerateUserSubscribedFilesResponse = 7322;
1531
+ ClientUCMUnsubscribePublishedFile = 7323; obsolete
1532
+ ClientUCMUnsubscribePublishedFileResponse = 7324; obsolete
1533
+ ClientUCMUpdatePublishedFile = 7325;
1534
+ ClientUCMUpdatePublishedFileResponse = 7326;
1535
+ UCMUpdatePublishedFile = 7327;
1536
+ UCMUpdatePublishedFileResponse = 7328;
1537
+ UCMDeletePublishedFile = 7329;
1538
+ UCMDeletePublishedFileResponse = 7330;
1539
+ UCMUpdatePublishedFileStat = 7331;
1540
+ UCMUpdatePublishedFileBan = 7332;
1541
+ UCMUpdatePublishedFileBanResponse = 7333;
1542
+ UCMUpdateTaggedScreenshot = 7334;
1543
+ UCMAddTaggedScreenshot = 7335;
1544
+ UCMRemoveTaggedScreenshot = 7336;
1545
+ UCMReloadPublishedFile = 7337;
1546
+ UCMReloadUserFileListCaches = 7338;
1547
+ UCMPublishedFileReported = 7339;
1548
+ UCMUpdatePublishedFileIncompatibleStatus = 7340;
1549
+ UCMPublishedFilePreviewAdd = 7341;
1550
+ UCMPublishedFilePreviewAddResponse = 7342;
1551
+ UCMPublishedFilePreviewRemove = 7343;
1552
+ UCMPublishedFilePreviewRemoveResponse = 7344;
1553
+ UCMPublishedFilePreviewChangeSortOrder = 7345;
1554
+ UCMPublishedFilePreviewChangeSortOrderResponse = 7346;
1555
+ ClientUCMPublishedFileSubscribed = 7347;
1556
+ ClientUCMPublishedFileUnsubscribed = 7348;
1557
+ UCMPublishedFileSubscribed = 7349;
1558
+ UCMPublishedFileUnsubscribed = 7350;
1559
+ UCMPublishFile = 7351;
1560
+ UCMPublishFileResponse = 7352;
1561
+ UCMPublishedFileChildAdd = 7353;
1562
+ UCMPublishedFileChildAddResponse = 7354;
1563
+ UCMPublishedFileChildRemove = 7355;
1564
+ UCMPublishedFileChildRemoveResponse = 7356;
1565
+ UCMPublishedFileChildChangeSortOrder = 7357;
1566
+ UCMPublishedFileChildChangeSortOrderResponse = 7358;
1567
+ UCMPublishedFileParentChanged = 7359;
1568
+ ClientUCMGetPublishedFilesForUser = 7360;
1569
+ ClientUCMGetPublishedFilesForUserResponse = 7361;
1570
+ UCMGetPublishedFilesForUser = 7362;
1571
+ UCMGetPublishedFilesForUserResponse = 7363;
1572
+ ClientUCMSetUserPublishedFileAction = 7364;
1573
+ ClientUCMSetUserPublishedFileActionResponse = 7365;
1574
+ ClientUCMEnumeratePublishedFilesByUserAction = 7366;
1575
+ ClientUCMEnumeratePublishedFilesByUserActionResponse = 7367;
1576
+ ClientUCMPublishedFileDeleted = 7368;
1577
+ UCMGetUserSubscribedFiles = 7369;
1578
+ UCMGetUserSubscribedFilesResponse = 7370;
1579
+ UCMFixStatsPublishedFile = 7371;
1580
+ UCMDeleteOldScreenshot = 7372;
1581
+ UCMDeleteOldScreenshotResponse = 7373;
1582
+ UCMDeleteOldVideo = 7374;
1583
+ UCMDeleteOldVideoResponse = 7375;
1584
+ UCMUpdateOldScreenshotPrivacy = 7376;
1585
+ UCMUpdateOldScreenshotPrivacyResponse = 7377;
1586
+ ClientUCMEnumerateUserSubscribedFilesWithUpdates = 7378;
1587
+ ClientUCMEnumerateUserSubscribedFilesWithUpdatesResponse = 7379;
1588
+ UCMPublishedFileContentUpdated = 7380;
1589
+ UCMPublishedFileUpdated = 7381;
1590
+ ClientWorkshopItemChangesRequest = 7382;
1591
+ ClientWorkshopItemChangesResponse = 7383;
1592
+ ClientWorkshopItemInfoRequest = 7384;
1593
+ ClientWorkshopItemInfoResponse = 7385;
1594
+
1595
+ FSBase = 7500;
1596
+ ClientRichPresenceUpload = 7501;
1597
+ ClientRichPresenceRequest = 7502;
1598
+ ClientRichPresenceInfo = 7503;
1599
+ FSRichPresenceRequest = 7504;
1600
+ FSRichPresenceResponse = 7505;
1601
+ FSComputeFrenematrix = 7506;
1602
+ FSComputeFrenematrixResponse = 7507;
1603
+ FSPlayStatusNotification = 7508;
1604
+ FSPublishPersonaStatus = 7509;
1605
+ FSAddOrRemoveFollower = 7510;
1606
+ FSAddOrRemoveFollowerResponse = 7511;
1607
+ FSUpdateFollowingList = 7512;
1608
+ FSCommentNotification = 7513;
1609
+ FSCommentNotificationViewed = 7514;
1610
+ ClientFSGetFollowerCount = 7515;
1611
+ ClientFSGetFollowerCountResponse = 7516;
1612
+ ClientFSGetIsFollowing = 7517;
1613
+ ClientFSGetIsFollowingResponse = 7518;
1614
+ ClientFSEnumerateFollowingList = 7519;
1615
+ ClientFSEnumerateFollowingListResponse = 7520;
1616
+ FSGetPendingNotificationCount = 7521;
1617
+ FSGetPendingNotificationCountResponse = 7522;
1618
+ ClientFSOfflineMessageNotification = 7523;
1619
+ ClientFSRequestOfflineMessageCount = 7524;
1620
+ ClientFSGetFriendMessageHistory = 7525;
1621
+ ClientFSGetFriendMessageHistoryResponse = 7526;
1622
+ ClientFSGetFriendMessageHistoryForOfflineMessages = 7527;
1623
+ ClientFSGetFriendsSteamLevels = 7528;
1624
+ ClientFSGetFriendsSteamLevelsResponse = 7529;
1625
+
1626
+ DRMRange2 = 7600;
1627
+ CEGVersionSetEnableDisableRequest = 7600;
1628
+ CEGVersionSetEnableDisableResponse = 7601;
1629
+ CEGPropStatusDRMSRequest = 7602;
1630
+ CEGPropStatusDRMSResponse = 7603;
1631
+ CEGWhackFailureReportRequest = 7604;
1632
+ CEGWhackFailureReportResponse = 7605;
1633
+ DRMSFetchVersionSet = 7606;
1634
+ DRMSFetchVersionSetResponse = 7607;
1635
+
1636
+ EconBase = 7700;
1637
+ EconTrading_InitiateTradeRequest = 7701;
1638
+ EconTrading_InitiateTradeProposed = 7702;
1639
+ EconTrading_InitiateTradeResponse = 7703;
1640
+ EconTrading_InitiateTradeResult = 7704;
1641
+ EconTrading_StartSession = 7705;
1642
+ EconTrading_CancelTradeRequest = 7706;
1643
+ EconFlushInventoryCache = 7707;
1644
+ EconFlushInventoryCacheResponse = 7708;
1645
+ EconCDKeyProcessTransaction = 7711;
1646
+ EconCDKeyProcessTransactionResponse = 7712;
1647
+ EconGetErrorLogs = 7713;
1648
+ EconGetErrorLogsResponse = 7714;
1649
+
1650
+ RMRange = 7800;
1651
+ RMTestVerisignOTP = 7800;
1652
+ RMTestVerisignOTPResponse = 7801;
1653
+ RMDeleteMemcachedKeys = 7803;
1654
+ RMRemoteInvoke = 7804;
1655
+ BadLoginIPList = 7805;
1656
+
1657
+ UGSBase = 7900;
1658
+ UGSUpdateGlobalStats = 7900;
1659
+ ClientUGSGetGlobalStats = 7901;
1660
+ ClientUGSGetGlobalStatsResponse = 7902;
1661
+
1662
+ StoreBase = 8000;
1663
+ StoreUpdateRecommendationCount = 8000;
1664
+
1665
+ UMQBase = 8100;
1666
+ UMQLogonRequest = 8100;
1667
+ UMQLogonResponse = 8101;
1668
+ UMQLogoffRequest = 8102;
1669
+ UMQLogoffResponse = 8103;
1670
+ UMQSendChatMessage = 8104;
1671
+ UMQIncomingChatMessage = 8105;
1672
+ UMQPoll = 8106;
1673
+ UMQPollResults = 8107;
1674
+ UMQ2AM_ClientMsgBatch = 8108;
1675
+ UMQEnqueueMobileSalePromotions = 8109;
1676
+ UMQEnqueueMobileAnnouncements = 8110;
1677
+
1678
+ WorkshopBase = 8200;
1679
+ WorkshopAcceptTOSRequest = 8200;
1680
+ WorkshopAcceptTOSResponse = 8201;
1681
+
1682
+ WebAPIBase = 8300;
1683
+ WebAPIValidateOAuth2Token = 8300;
1684
+ WebAPIValidateOAuth2TokenResponse = 8301;
1685
+ WebAPIInvalidateTokensForAccount = 8302;
1686
+ WebAPIRegisterGCInterfaces = 8303;
1687
+ WebAPIInvalidateOAuthClientCache = 8304;
1688
+ WebAPIInvalidateOAuthTokenCache = 8305;
1689
+
1690
+ BackpackBase = 8400;
1691
+ BackpackAddToCurrency = 8401;
1692
+ BackpackAddToCurrencyResponse = 8402;
1693
+
1694
+ CREBase = 8500;
1695
+ CRERankByTrend = 8501; obsolete
1696
+ CRERankByTrendResponse = 8502; obsolete
1697
+ CREItemVoteSummary = 8503;
1698
+ CREItemVoteSummaryResponse = 8504;
1699
+ CRERankByVote = 8505; obsolete
1700
+ CRERankByVoteResponse = 8506; obsolete
1701
+ CREUpdateUserPublishedItemVote = 8507;
1702
+ CREUpdateUserPublishedItemVoteResponse = 8508;
1703
+ CREGetUserPublishedItemVoteDetails = 8509;
1704
+ CREGetUserPublishedItemVoteDetailsResponse = 8510;
1705
+ CREEnumeratePublishedFiles = 8511;
1706
+ CREEnumeratePublishedFilesResponse = 8512;
1707
+ CREPublishedFileVoteAdded = 8513;
1708
+
1709
+ SecretsBase = 8600;
1710
+ SecretsRequestCredentialPair = 8600;
1711
+ SecretsCredentialPairResponse = 8601;
1712
+ SecretsRequestServerIdentity = 8602;
1713
+ SecretsServerIdentityResponse = 8603;
1714
+ SecretsUpdateServerIdentities = 8604;
1715
+
1716
+ BoxMonitorBase = 8700;
1717
+ BoxMonitorReportRequest = 8700;
1718
+ BoxMonitorReportResponse = 8701;
1719
+
1720
+ LogsinkBase = 8800;
1721
+ LogsinkWriteReport = 8800;
1722
+
1723
+ PICSBase = 8900;
1724
+ ClientPICSChangesSinceRequest = 8901;
1725
+ ClientPICSChangesSinceResponse = 8902;
1726
+ ClientPICSProductInfoRequest = 8903;
1727
+ ClientPICSProductInfoResponse = 8904;
1728
+ ClientPICSAccessTokenRequest = 8905;
1729
+ ClientPICSAccessTokenResponse = 8906;
1730
+
1731
+ WorkerProcess = 9000;
1732
+ WorkerProcessPingRequest = 9000;
1733
+ WorkerProcessPingResponse = 9001;
1734
+ WorkerProcessShutdown = 9002;
1735
+
1736
+ DRMWorkerProcess = 9100;
1737
+ DRMWorkerProcessDRMAndSign = 9100;
1738
+ DRMWorkerProcessDRMAndSignResponse = 9101;
1739
+ DRMWorkerProcessSteamworksInfoRequest = 9102;
1740
+ DRMWorkerProcessSteamworksInfoResponse = 9103;
1741
+ DRMWorkerProcessInstallDRMDLLRequest = 9104;
1742
+ DRMWorkerProcessInstallDRMDLLResponse = 9105;
1743
+ DRMWorkerProcessSecretIdStringRequest = 9106;
1744
+ DRMWorkerProcessSecretIdStringResponse = 9107;
1745
+ DRMWorkerProcessGetDRMGuidsFromFileRequest = 9108;
1746
+ DRMWorkerProcessGetDRMGuidsFromFileResponse = 9109;
1747
+ DRMWorkerProcessInstallProcessedFilesRequest = 9110;
1748
+ DRMWorkerProcessInstallProcessedFilesResponse = 9111;
1749
+ DRMWorkerProcessExamineBlobRequest = 9112;
1750
+ DRMWorkerProcessExamineBlobResponse = 9113;
1751
+ DRMWorkerProcessDescribeSecretRequest = 9114;
1752
+ DRMWorkerProcessDescribeSecretResponse = 9115;
1753
+ DRMWorkerProcessBackfillOriginalRequest = 9116;
1754
+ DRMWorkerProcessBackfillOriginalResponse = 9117;
1755
+ DRMWorkerProcessValidateDRMDLLRequest = 9118;
1756
+ DRMWorkerProcessValidateDRMDLLResponse = 9119;
1757
+ DRMWorkerProcessValidateFileRequest = 9120;
1758
+ DRMWorkerProcessValidateFileResponse = 9121;
1759
+ DRMWorkerProcessSplitAndInstallRequest = 9122;
1760
+ DRMWorkerProcessSplitAndInstallResponse = 9123;
1761
+ DRMWorkerProcessGetBlobRequest = 9124;
1762
+ DRMWorkerProcessGetBlobResponse = 9125;
1763
+ DRMWorkerProcessEvaluateCrashRequest = 9126;
1764
+ DRMWorkerProcessEvaluateCrashResponse = 9127;
1765
+ DRMWorkerProcessAnalyzeFileRequest = 9128;
1766
+ DRMWorkerProcessAnalyzeFileResponse = 9129;
1767
+ DRMWorkerProcessUnpackBlobRequest = 9130;
1768
+ DRMWorkerProcessUnpackBlobResponse = 9131;
1769
+ DRMWorkerProcessInstallAllRequest = 9132;
1770
+ DRMWorkerProcessInstallAllResponse = 9133;
1771
+
1772
+ TestWorkerProcess = 9200;
1773
+ TestWorkerProcessLoadUnloadModuleRequest = 9200;
1774
+ TestWorkerProcessLoadUnloadModuleResponse = 9201;
1775
+ TestWorkerProcessServiceModuleCallRequest = 9202;
1776
+ TestWorkerProcessServiceModuleCallResponse = 9203;
1777
+
1778
+ ClientGetEmoticonList = 9330;
1779
+ ClientEmoticonList = 9331;
1780
+
1781
+ ClientSharedLibraryBase = 9400;
1782
+ ClientSharedLicensesLockStatus = 9403; obsolete
1783
+ ClientSharedLicensesStopPlaying = 9404; obsolete
1784
+ ClientSharedLibraryLockStatus = 9405;
1785
+ ClientSharedLibraryStopPlaying = 9406;
1786
+
1787
+ ClientUnlockStreaming = 9507;
1788
+ ClientUnlockStreamingResponse = 9508;
1789
+
1790
+ ClientPlayingSessionState = 9600;
1791
+ ClientKickPlayingSession = 9601;
1792
+
1793
+ ClientBroadcastInit = 9700;
1794
+ ClientBroadcastFrames = 9701;
1795
+ ClientBroadcastDisconnect = 9702;
1796
+ ClientBroadcastScreenshot = 9703;
1797
+ ClientBroadcastUploadConfig = 9704;
1798
+
1799
+ ClientVoiceCallPreAuthorize = 9800;
1800
+ ClientVoiceCallPreAuthorizeResponse = 9801;
1801
+
1802
+ };