|
| #define | MONERO_DEFAULT_LOG_CATEGORY "net" |
| |
| #define | MAKE_IP(a1, a2, a3, a4) (a1|(a2<<8)|(a3<<16)|(((uint32_t)a4)<<24)) |
| |
| #define | MONERO_GET_EXECUTOR(type) type . get_io_context() |
| |
| #define | LOG_ERROR_CC(ct, message) MERROR(ct << message) |
| |
| #define | LOG_WARNING_CC(ct, message) MWARNING(ct << message) |
| |
| #define | LOG_INFO_CC(ct, message) MINFO(ct << message) |
| |
| #define | LOG_DEBUG_CC(ct, message) MDEBUG(ct << message) |
| |
| #define | LOG_TRACE_CC(ct, message) MTRACE(ct << message) |
| |
| #define | LOG_CC(level, ct, message) MLOG(level, ct << message) |
| |
| #define | LOG_PRINT_CC_L0(ct, message) LOG_PRINT_L0(ct << message) |
| |
| #define | LOG_PRINT_CC_L1(ct, message) LOG_PRINT_L1(ct << message) |
| |
| #define | LOG_PRINT_CC_L2(ct, message) LOG_PRINT_L2(ct << message) |
| |
| #define | LOG_PRINT_CC_L3(ct, message) LOG_PRINT_L3(ct << message) |
| |
| #define | LOG_PRINT_CC_L4(ct, message) LOG_PRINT_L4(ct << message) |
| |
| #define | LOG_PRINT_CCONTEXT_L0(message) LOG_PRINT_CC_L0(context, message) |
| |
| #define | LOG_PRINT_CCONTEXT_L1(message) LOG_PRINT_CC_L1(context, message) |
| |
| #define | LOG_PRINT_CCONTEXT_L2(message) LOG_PRINT_CC_L2(context, message) |
| |
| #define | LOG_PRINT_CCONTEXT_L3(message) LOG_PRINT_CC_L3(context, message) |
| |
| #define | LOG_ERROR_CCONTEXT(message) LOG_ERROR_CC(context, message) |
| |
| #define | CHECK_AND_ASSERT_MES_CC(condition, return_val, err_message) CHECK_AND_ASSERT_MES(condition, return_val, "[" << epee::net_utils::print_connection_context_short(context) << "]" << err_message) |
| |
|
| bool | epee::net_utils::operator== (const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator!= (const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator< (const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator<= (const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator> (const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator>= (const ipv4_network_address &lhs, const ipv4_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator== (const ipv4_network_subnet &lhs, const ipv4_network_subnet &rhs) noexcept |
| |
| bool | epee::net_utils::operator!= (const ipv4_network_subnet &lhs, const ipv4_network_subnet &rhs) noexcept |
| |
| bool | epee::net_utils::operator< (const ipv4_network_subnet &lhs, const ipv4_network_subnet &rhs) noexcept |
| |
| bool | epee::net_utils::operator<= (const ipv4_network_subnet &lhs, const ipv4_network_subnet &rhs) noexcept |
| |
| bool | epee::net_utils::operator> (const ipv4_network_subnet &lhs, const ipv4_network_subnet &rhs) noexcept |
| |
| bool | epee::net_utils::operator>= (const ipv4_network_subnet &lhs, const ipv4_network_subnet &rhs) noexcept |
| |
| bool | epee::net_utils::operator== (const ipv6_network_address &lhs, const ipv6_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator!= (const ipv6_network_address &lhs, const ipv6_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator< (const ipv6_network_address &lhs, const ipv6_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator<= (const ipv6_network_address &lhs, const ipv6_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator> (const ipv6_network_address &lhs, const ipv6_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator>= (const ipv6_network_address &lhs, const ipv6_network_address &rhs) noexcept |
| |
| bool | epee::net_utils::operator== (const network_address &lhs, const network_address &rhs) |
| |
| bool | epee::net_utils::operator!= (const network_address &lhs, const network_address &rhs) |
| |
| bool | epee::net_utils::operator< (const network_address &lhs, const network_address &rhs) |
| |
| bool | epee::net_utils::operator<= (const network_address &lhs, const network_address &rhs) |
| |
| bool | epee::net_utils::operator> (const network_address &lhs, const network_address &rhs) |
| |
| bool | epee::net_utils::operator>= (const network_address &lhs, const network_address &rhs) |
| |
| std::string | epee::net_utils::print_connection_context (const connection_context_base &ctx) |
| |
| std::string | epee::net_utils::print_connection_context_short (const connection_context_base &ctx) |
| |
| | epee::net_utils::MAKE_LOGGABLE (connection_context_base, ct, os) |
| |