00001
00002
00003
00004
00005
00006
00007 #ifndef COH_INET_SOCKET_ADDRESS_HPP
00008 #define COH_INET_SOCKET_ADDRESS_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/net/InetAddress.hpp"
00013 #include "coherence/net/SocketAddress.hpp"
00014
00015
00016
00017 COH_OPEN_NAMESPACE2(coherence,net)
00018
00019
00020
00021
00022
00023
00024
00025 class COH_EXPORT InetSocketAddress
00026 : public abstract_spec<InetSocketAddress,
00027 extends<Object>,
00028 implements<SocketAddress> >
00029 {
00030 friend class factory<InetSocketAddress>;
00031
00032
00033
00034 public:
00035
00036
00037
00038
00039
00040
00041
00042
00043 static InetSocketAddress::Handle create(InetAddress::View vAddr,
00044 uint16_t nPort);
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 static InetSocketAddress::Handle create(String::View vsHost,
00056 uint16_t nPort, bool fResolve = true);
00057
00058
00059
00060
00061 public:
00062
00063
00064
00065
00066
00067 virtual InetAddress::View getAddress() const = 0;
00068
00069
00070
00071
00072
00073
00074 virtual uint16_t getPort() const = 0;
00075
00076
00077
00078
00079
00080
00081 virtual String::View getHostName() const = 0;
00082
00083
00084
00085
00086 public:
00087
00088
00089
00090 virtual TypedHandle<const String> toString() const;
00091 };
00092
00093 COH_CLOSE_NAMESPACE2
00094
00095 #endif // COH_INET_SOCKET_ADDRESS_HPP