sockpp
Modern C++ socket library wrapper
|
Generic address class for sockpp. More...
Go to the source code of this file.
Classes | |
class | sockpp::sock_address |
Generic socket address. More... | |
class | sockpp::sock_address_any |
Generic socket address. More... | |
Functions | |
bool | sockpp::operator== (const sock_address &lhs, const sock_address &rhs) |
Determines if the two objects refer to the same address. More... | |
bool | sockpp::operator!= (const sock_address &lhs, const sock_address &rhs) |
Determines if the two objects refer to the different address. More... | |
Generic address class for sockpp.
|
inline |
Determines if the two objects refer to the different address.
lhs | A socket address |
rhs | A socket address |
lhs
and rhs
refer to different address, false if they refer to the same address.
|
inline |
Determines if the two objects refer to the same address.
lhs | A socket address |
rhs | A socket address |
lhs
and rhs
refer to the same address, false otherwise.