comparison C++/SocketAddress.h @ 297:836903141476

Socket: provide experimental SSL support
author David Demelier <markand@malikania.fr>
date Sat, 15 Nov 2014 12:41:52 +0100
parents ea55a3886da0
children c019f194475a
comparison
equal deleted inserted replaced
296:5806c767aec7 297:836903141476
102 * @brief internet protocol connect class 102 * @brief internet protocol connect class
103 * 103 *
104 * Create a connect address for internet protocol, 104 * Create a connect address for internet protocol,
105 * using getaddrinfo(3). 105 * using getaddrinfo(3).
106 */ 106 */
107 class Internet final : public SocketAddress { 107 class Internet : public SocketAddress {
108 public: 108 public:
109 /** 109 /**
110 * Create an IPv4 or IPV6 end point. 110 * Create an IPv4 or IPV6 end point.
111 * 111 *
112 * @param host the hostname 112 * @param host the hostname
123 * @class Unix 123 * @class Unix
124 * @brief unix family sockets 124 * @brief unix family sockets
125 * 125 *
126 * Create an address to a specific path. Only available on Unix. 126 * Create an address to a specific path. Only available on Unix.
127 */ 127 */
128 class Unix final : public SocketAddress { 128 class Unix : public SocketAddress {
129 public: 129 public:
130 /** 130 /**
131 * Construct an address to a path. 131 * Construct an address to a path.
132 * 132 *
133 * @param path the path 133 * @param path the path