Go to the documentation of this file.00001 #ifndef __RAKNET_SOCKET_H
00002 #define __RAKNET_SOCKET_H
00003
00004 #include "RakNetTypes.h"
00005 #include "RakNetDefines.h"
00006 #include "Export.h"
00007
00008
00009 struct RAK_DLL_EXPORT RakNetSocket
00010 {
00011 RakNetSocket();
00012 ~RakNetSocket();
00013
00014
00015 unsigned int s;
00016 unsigned int userConnectionSocketIndex;
00017 SystemAddress boundAddress;
00018 #if defined (_WIN32) && defined(USE_WAIT_FOR_MULTIPLE_EVENTS)
00019 void* recvEvent;
00020 #endif
00021
00022
00023 unsigned short remotePortRakNetWasStartedOn_PS3;
00024
00025 };
00026
00027 #endif