Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00031
00032 #pragma once
00033
00034 #include "../api_network.h"
00035 #include "../../Core/System/sharedptr.h"
00036
00037 class CL_SocketName_Impl;
00038
00042 class CL_API_NETWORK CL_SocketName
00043 {
00046
00047 public:
00049
00051 CL_SocketName();
00052
00056 CL_SocketName(const CL_String &port);
00057
00062 CL_SocketName(const CL_String &address, const CL_String &port);
00063
00067
00068 public:
00070 CL_String get_address() const;
00071
00073 CL_String get_port() const;
00074
00076 bool operator == (const CL_SocketName &other_instance) const;
00077
00079
00082 bool operator < (const CL_SocketName &other_instance) const;
00083
00085
00088 bool operator > (const CL_SocketName &other_instance) const;
00089
00093
00094 public:
00099 void set_name(const CL_String &hostname, const CL_String &port);
00100
00102 void set_address(const CL_String &address);
00103
00105 void set_port(const CL_String &port);
00106
00108 CL_String lookup_ipv4() const;
00109
00111 CL_String lookup_hostname() const;
00112
00114 CL_SocketName to_ipv4();
00115
00117 CL_SocketName to_hostname();
00118
00120 void to_sockaddr(int domain, struct sockaddr *addr, int len) const;
00121
00123 void from_sockaddr(int domain, struct sockaddr *addr, int len);
00124
00128
00129 private:
00130 CL_SharedPtr<CL_SocketName_Impl> impl;
00132 };
00133