Boost.Corosio

    • Introduction
    • Networking Tutorial
      • What Happens When You Connect
      • Addressing Machines on the Internet
      • Turning Names into Addresses
      • URLs and Resource Identification
      • Clients, Servers, and Ports
      • IP: Moving Packets Across Networks
      • UDP: Fast, Simple, Unreliable
      • TCP: Reliable Byte Streams
      • Opening and Closing TCP Connections
      • How TCP Moves Your Data
      • When Packets Go Missing
      • Making TCP Fast
    • Tutorials
      • Echo Server Tutorial
      • HTTP Client Tutorial
      • DNS Lookup Tutorial
      • TLS Context Configuration
    • Guide
      • TCP/IP Networking
      • Concurrent Programming
      • I/O Context
      • Sockets
      • Acceptors
      • Endpoints
      • Composed Operations
      • Timers
      • Signal Handling
      • Name Resolution
      • TCP Server
      • TLS Encryption
      • Error Handling
      • Buffer Sequences
    • Testing
      • Mock Sockets
    • Benchmarks
    • Glossary
    • Quick Start
  • boost::corosio::operator&
arrow_upward

boost::corosio::operator&

Bitwise conjunction operators

Synopses

Declared in <boost/corosio/resolver.hpp>

Mask two flag values.

constexpr
flags_t
operator&(
    flags_t a,
    flags_t b) noexcept;

» more...

Intersect two resolve_flags.

resolve_flags
operator&(
    resolve_flags a,
    resolve_flags b) noexcept;

» more...

Intersect two reverse_flags.

reverse_flags
operator&(
    reverse_flags a,
    reverse_flags b) noexcept;

» more...

Created with MrDocs