Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

ip::network_v4::network_v4

Default constructor.

network_v4();
  » more...

Construct a network based on the specified address and prefix length.

network_v4(
    const address_v4 & addr,
    unsigned short prefix_len);
  » more...

Construct network based on the specified address and netmask.

network_v4(
    const address_v4 & addr,
    const address_v4 & mask);
  » more...

Copy constructor.

network_v4(
    const network_v4 & other);
  » more...

PrevUpHomeNext