53 lines
1.0 KiB
C++
53 lines
1.0 KiB
C++
#ifndef UDPNETWORKUTILITY_HPP_
|
|
#define UDPNETWORKUTILITY_HPP_
|
|
|
|
#include "SDL_net/SDL_net.h"
|
|
|
|
class UDPNetworkUtility {
|
|
public:
|
|
UDPNetworkUtility() = default;
|
|
~UDPNetworkUtility() = default;
|
|
|
|
void Open(int port, int packSize);
|
|
void Close();
|
|
|
|
//bind to an available channel
|
|
int Bind(const char* ip, int port) {
|
|
Bind(ip, port, -1);
|
|
}
|
|
int Bind(IPaddress add) {
|
|
Bind(add, -1);
|
|
}
|
|
|
|
//bind to certain channel
|
|
int Bind(const char* ip, int port, int channel);
|
|
int Bind(IPaddress add, int channel);
|
|
void Unbind(int channel);
|
|
|
|
IPaddress* GetIPAddress(int channel) {
|
|
return SDLNet_GetPeerAddress(socket, channel);
|
|
}
|
|
|
|
int Send(int channel, void* data, int len);
|
|
int Receive();
|
|
|
|
void* GetOutData() const {
|
|
return reinterpret_cast<void*>(packOut->data);
|
|
};
|
|
void* GetInData() const {
|
|
return reinterpret_cast<void*>(packIn->data);
|
|
};
|
|
void* GetOutPacket() const {
|
|
return packOut;
|
|
}
|
|
void* GetInPacket() const {
|
|
return packIn;
|
|
}
|
|
private:
|
|
UDPsocket socket = nullptr;
|
|
UDPpacket* packOut = nullptr;
|
|
UDPpacket* packIn = nullptr;
|
|
};
|
|
|
|
#endif
|