ServerCore/IPAddress.h
2019-03-04 13:08:34 -08:00

30 lines
674 B
C++

#ifndef __IPAddress_h__
#define __IPAddress_h__
#include "includes"
#include "Object.h"
namespace core {
class IPAddress : public Object {
public:
IPAddress();
IPAddress(std::string address);
IPAddress(std::string address, int port);
~IPAddress();
struct sockaddr_in addr;
socklen_t addressLength;
struct sockaddr * getPointer();
std::string getClientAddress(); ///<Get the client network address as xxx.xxx.xxx.xxx.
std::string getClientAddressAndPort(); ///<Get the client network address and port as xxx.xxx.xxx.xxx:ppppp.
int getClientPort(); ///<Get the client network port number.
};
}
#endif