mirror of
https://github.com/rajkosto/mxoemu
synced 2026-08-14 02:26:05 -04:00
16 lines
No EOL
266 B
C++
16 lines
No EOL
266 B
C++
#ifndef _REMOTESOCKET_H
|
|
#define _REMOTESOCKET_H
|
|
|
|
#include <UdpSocket.h>
|
|
|
|
|
|
class RemoteSocket : public UdpSocket
|
|
{
|
|
public:
|
|
RemoteSocket(ISocketHandler&);
|
|
|
|
void OnRawData(const char *,size_t,struct sockaddr *,socklen_t);
|
|
};
|
|
|
|
|
|
#endif // _REMOTESOCKET_H
|