Asio Extensions
Additional functionality built on top of (Boost.)Asio
|
Specifies semantics for opening files. More...
Enumerations | |
enum | asioext::open_flags { asioext::open_flags::none = 0, asioext::open_flags::access_read = 1 << 0, asioext::open_flags::access_write = 1 << 1, asioext::open_flags::access_read_write = access_read | access_write, asioext::open_flags::create_new = 1 << 2, asioext::open_flags::create_always = 1 << 3, asioext::open_flags::open_existing = 1 << 4, asioext::open_flags::open_always = 1 << 5, asioext::open_flags::truncate_existing = 1 << 6, asioext::open_flags::exclusive_read = 1 << 7, asioext::open_flags::exclusive_write = 1 << 8 } |
Specifies semantics for opening files. More... | |
Functions | |
bool | asioext::is_valid (open_flags flags) noexcept |
Check whether a set of open flags is valid. More... | |
Specifies semantics for opening files.
|
strong |
Specifies semantics for opening files.
This enum of bitmask values controls the behaviour of the asioext::open(). open_flags
meets the requirements of BitmaskType.
open() converts these to their platform's native equivalent (if possible). Flags that are only available on certain platforms are marked as such.
There are 4 categories of flags:
access_read
, ...)create_new
, ...)exclusive_read
, ...)async
, ...)File creation disposition flags are mutually exclusive. Specifying more than one is an error.
|
noexcept |
Check whether a set of open flags is valid.
This function checks whether the given flags
are valid, i.e. no mutually exclusive or unsupported flags have been specified.