idfxx 1.0.0
Modern C++23 components for ESP-IDF
Loading...
Searching...
No Matches
idfxx::net::ip_address Concept Reference

Concept matching either ipv4_addr or ipv6_addr. More...

Concept definition

template<typename T>
concept idfxx::net::ip_address = std::same_as<T, ipv4_addr> || std::same_as<T, ipv6_addr>
Concept matching either ipv4_addr or ipv6_addr.
Definition net.hpp:219

Detailed Description

Concept matching either ipv4_addr or ipv6_addr.

Used to constrain templates that accept any IP address type.

Definition at line 219 of file net.hpp.