basic_endpoint.hpp 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. //
  2. // ip/basic_endpoint.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2011 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef ASIO_IP_BASIC_ENDPOINT_HPP
  11. #define ASIO_IP_BASIC_ENDPOINT_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include "asio/detail/config.hpp"
  16. #include "asio/ip/address.hpp"
  17. #include "asio/ip/detail/endpoint.hpp"
  18. #if !defined(BOOST_NO_IOSTREAM)
  19. # include <iosfwd>
  20. #endif // !defined(BOOST_NO_IOSTREAM)
  21. #include "asio/detail/push_options.hpp"
  22. namespace asio {
  23. namespace ip {
  24. /// Describes an endpoint for a version-independent IP socket.
  25. /**
  26. * The asio::ip::basic_endpoint class template describes an endpoint that
  27. * may be associated with a particular socket.
  28. *
  29. * @par Thread Safety
  30. * @e Distinct @e objects: Safe.@n
  31. * @e Shared @e objects: Unsafe.
  32. *
  33. * @par Concepts:
  34. * Endpoint.
  35. */
  36. template <typename InternetProtocol>
  37. class basic_endpoint
  38. {
  39. public:
  40. /// The protocol type associated with the endpoint.
  41. typedef InternetProtocol protocol_type;
  42. /// The type of the endpoint structure. This type is dependent on the
  43. /// underlying implementation of the socket layer.
  44. #if defined(GENERATING_DOCUMENTATION)
  45. typedef implementation_defined data_type;
  46. #else
  47. typedef asio::detail::socket_addr_type data_type;
  48. #endif
  49. /// Default constructor.
  50. basic_endpoint()
  51. : impl_()
  52. {
  53. }
  54. /// Construct an endpoint using a port number, specified in the host's byte
  55. /// order. The IP address will be the any address (i.e. INADDR_ANY or
  56. /// in6addr_any). This constructor would typically be used for accepting new
  57. /// connections.
  58. /**
  59. * @par Examples
  60. * To initialise an IPv4 TCP endpoint for port 1234, use:
  61. * @code
  62. * asio::ip::tcp::endpoint ep(asio::ip::tcp::v4(), 1234);
  63. * @endcode
  64. *
  65. * To specify an IPv6 UDP endpoint for port 9876, use:
  66. * @code
  67. * asio::ip::udp::endpoint ep(asio::ip::udp::v6(), 9876);
  68. * @endcode
  69. */
  70. basic_endpoint(const InternetProtocol& protocol, unsigned short port_num)
  71. : impl_(protocol.family(), port_num)
  72. {
  73. }
  74. /// Construct an endpoint using a port number and an IP address. This
  75. /// constructor may be used for accepting connections on a specific interface
  76. /// or for making a connection to a remote endpoint.
  77. basic_endpoint(const asio::ip::address& addr, unsigned short port_num)
  78. : impl_(addr, port_num)
  79. {
  80. }
  81. /// Copy constructor.
  82. basic_endpoint(const basic_endpoint& other)
  83. : impl_(other.impl_)
  84. {
  85. }
  86. /// Assign from another endpoint.
  87. basic_endpoint& operator=(const basic_endpoint& other)
  88. {
  89. impl_ = other.impl_;
  90. return *this;
  91. }
  92. /// The protocol associated with the endpoint.
  93. protocol_type protocol() const
  94. {
  95. if (impl_.is_v4())
  96. return InternetProtocol::v4();
  97. return InternetProtocol::v6();
  98. }
  99. /// Get the underlying endpoint in the native type.
  100. data_type* data()
  101. {
  102. return impl_.data();
  103. }
  104. /// Get the underlying endpoint in the native type.
  105. const data_type* data() const
  106. {
  107. return impl_.data();
  108. }
  109. /// Get the underlying size of the endpoint in the native type.
  110. std::size_t size() const
  111. {
  112. return impl_.size();
  113. }
  114. /// Set the underlying size of the endpoint in the native type.
  115. void resize(std::size_t size)
  116. {
  117. impl_.resize(size);
  118. }
  119. /// Get the capacity of the endpoint in the native type.
  120. std::size_t capacity() const
  121. {
  122. return impl_.capacity();
  123. }
  124. /// Get the port associated with the endpoint. The port number is always in
  125. /// the host's byte order.
  126. unsigned short port() const
  127. {
  128. return impl_.port();
  129. }
  130. /// Set the port associated with the endpoint. The port number is always in
  131. /// the host's byte order.
  132. void port(unsigned short port_num)
  133. {
  134. impl_.port(port_num);
  135. }
  136. /// Get the IP address associated with the endpoint.
  137. asio::ip::address address() const
  138. {
  139. return impl_.address();
  140. }
  141. /// Set the IP address associated with the endpoint.
  142. void address(const asio::ip::address& addr)
  143. {
  144. impl_.address(addr);
  145. }
  146. /// Compare two endpoints for equality.
  147. friend bool operator==(const basic_endpoint<InternetProtocol>& e1,
  148. const basic_endpoint<InternetProtocol>& e2)
  149. {
  150. return e1.impl_ == e2.impl_;
  151. }
  152. /// Compare two endpoints for inequality.
  153. friend bool operator!=(const basic_endpoint<InternetProtocol>& e1,
  154. const basic_endpoint<InternetProtocol>& e2)
  155. {
  156. return !(e1 == e2);
  157. }
  158. /// Compare endpoints for ordering.
  159. friend bool operator<(const basic_endpoint<InternetProtocol>& e1,
  160. const basic_endpoint<InternetProtocol>& e2)
  161. {
  162. return e1.impl_ < e2.impl_;
  163. }
  164. /// Compare endpoints for ordering.
  165. friend bool operator>(const basic_endpoint<InternetProtocol>& e1,
  166. const basic_endpoint<InternetProtocol>& e2)
  167. {
  168. return e2.impl_ < e1.impl_;
  169. }
  170. /// Compare endpoints for ordering.
  171. friend bool operator<=(const basic_endpoint<InternetProtocol>& e1,
  172. const basic_endpoint<InternetProtocol>& e2)
  173. {
  174. return !(e2 < e1);
  175. }
  176. /// Compare endpoints for ordering.
  177. friend bool operator>=(const basic_endpoint<InternetProtocol>& e1,
  178. const basic_endpoint<InternetProtocol>& e2)
  179. {
  180. return !(e1 < e2);
  181. }
  182. private:
  183. // The underlying IP endpoint.
  184. asio::ip::detail::endpoint impl_;
  185. };
  186. #if !defined(BOOST_NO_IOSTREAM)
  187. /// Output an endpoint as a string.
  188. /**
  189. * Used to output a human-readable string for a specified endpoint.
  190. *
  191. * @param os The output stream to which the string will be written.
  192. *
  193. * @param endpoint The endpoint to be written.
  194. *
  195. * @return The output stream.
  196. *
  197. * @relates asio::ip::basic_endpoint
  198. */
  199. template <typename Elem, typename Traits, typename InternetProtocol>
  200. std::basic_ostream<Elem, Traits>& operator<<(
  201. std::basic_ostream<Elem, Traits>& os,
  202. const basic_endpoint<InternetProtocol>& endpoint);
  203. #endif // !defined(BOOST_NO_IOSTREAM)
  204. } // namespace ip
  205. } // namespace asio
  206. #include "asio/detail/pop_options.hpp"
  207. #include "asio/ip/impl/basic_endpoint.hpp"
  208. #endif // ASIO_IP_BASIC_ENDPOINT_HPP