Flags given by the application for write* calls.
Synopsis
Declared in <folly/io/async/WriteFlags.h>
enum class WriteFlags : uint32_t;
Members
Name |
Description |
|
No flags set. |
|
Whether to delay the output until a subsequent non‐corked write. |
|
Set MSG_EOR flag when writing the last byte of the buffer to the socket. |
|
Indicates that only the write side of socket should be shutdown. |
|
Use msg zerocopy if allowed. |
|
Request timestamp when entire buffer transmitted by the NIC. |
|
Request timestamp when entire buffer ACKed by remote endpoint. |
|
Request timestamp when entire buffer has entered packet scheduler. |
|
Request timestamp when entire buffer has been written to system socket. |
Non-Member Functions
Name |
Description |
Tests whether all flags of |
|
Computes the intersection of two flag sets. |
|
Intersects |
|
Computes the union of two flag sets. |
|
Unions |
|
Computes the complement of a flag set. |
|
Clears the flags of |
Created with MrDocs