SLikeNet  0.1.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MessageIdentifiers.h
Go to the documentation of this file.
1 /*
2  * Original work: Copyright (c) 2014, Oculus VR, Inc.
3  * All rights reserved.
4  *
5  * This source code is licensed under the BSD-style license found in the
6  * RakNet License.txt file in the licenses directory of this source tree. An additional grant
7  * of patent rights can be found in the RakNet Patents.txt file in the same directory.
8  *
9  *
10  * Modified work: Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt)
11  *
12  * This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
13  * license found in the license.txt file in the root directory of this source tree.
14  */
15 
19 
20 
21 #ifndef __MESSAGE_IDENTIFIERS_H
22 #define __MESSAGE_IDENTIFIERS_H
23 
24 #if defined(RAKNET_USE_CUSTOM_PACKET_IDS)
25 #include "CustomPacketIdentifiers.h"
26 #else
27 
29 {
42 };
43 
57 {
58  //
59  // RESERVED TYPES - DO NOT CHANGE THESE
60  // All types from RakPeer
61  //
109 
110 
111  //
112  // USER TYPES - DO NOT CHANGE THESE
113  //
114 
135  // RAKNET_PROTOCOL_VERSION in version.h does not match on the remote system what we have on our system
136  // This means the two systems cannot communicate.
137  // The 2nd byte of the message contains the value of RAKNET_PROTOCOL_VERSION for the remote system
139  // Means that this IP address connected recently, and can't connect again as a security measure. See
152  // RakPeer - Downloading a large message. Format is ID_DOWNLOAD_PROGRESS (MessageID), partCount (unsigned int),
157 
166 
171  // Ack for reference push, to send more of the file
173 
176 
179 
190 
199 
219 
223  //ID_NAT_GROUP_PUNCHTHROUGH_REQUEST,
225  //ID_NAT_GROUP_PUNCHTHROUGH_REPLY,
233  //ID_NAT_GROUP_PUNCHTHROUGH_FAILURE_NOTIFICATION,
234 
254 
267 
270 
271  // RPC3, RPC4 error
275 
280 
285 
289 
332 
335 
342 
347 
370 
384 
387 
390 
409 
418 
419  // LibVoice
421 
433 
434  // For the user to use. Start your first enumeration at this value.
436  //-------------------------------------------------------------------------------------------------------------
437 
438 };
439 
440 #endif // RAKNET_USE_CUSTOM_PACKET_IDS
441 
442 #endif