Home | History | Annotate | Download | only in ip

Lines Matching defs:address

16 #include "asio/ip/address.hpp"
55 /// order. The IP address will be the any address (i.e. INADDR_ANY or
76 /// Construct an endpoint using a port number and an IP address. This
79 basic_endpoint(const asio::ip::address& addr, unsigned short port_num)
162 /// Get the IP address associated with the endpoint.
163 asio::ip::address address() const
165 return impl_.address();
168 /// Set the IP address associated with the endpoint.
169 void address(const asio::ip::address& addr)
171 impl_.address(addr);