mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-09 20:24:16 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
17
thirdparty/raknet/Source/RouterInterface.h
vendored
Normal file
17
thirdparty/raknet/Source/RouterInterface.h
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef __ROUTER_INTERFACE_H
|
||||
#define __ROUTER_INTERFACE_H
|
||||
|
||||
#include "Export.h"
|
||||
#include "RakNetTypes.h"
|
||||
|
||||
/// On failed directed sends, RakNet can call an alternative send function to use.
|
||||
class RAK_DLL_EXPORT RouterInterface
|
||||
{
|
||||
public:
|
||||
RouterInterface() {}
|
||||
virtual ~RouterInterface() {}
|
||||
|
||||
virtual bool Send( const char *data, BitSize_t bitLength, PacketPriority priority, PacketReliability reliability, char orderingChannel, SystemAddress systemAddress )=0;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user