NE_SET_REQUEST_FLAG(3) | neon API reference | NE_SET_REQUEST_FLAG(3) |
ne_set_request_flag, ne_get_request_flag - set and retrieve per-request flags
#include <ne_request.h>
void ne_set_request_flag(ne_request *req, ne_request_flag flag, int value);
int ne_get_request_flag(ne_request *req, ne_request_flag flag);
The ne_set_request_flag function enables or disables a per-request flag. Passing a non-zero value argument enables the flag, and zero disables it.
The following flags are defined:
NE_REQFLAG_EXPECT100
NE_REQFLAG_IDEMPOTENT
The ne_get_request_flag function returns zero if a flag is disabled, less than zero if the flag is not supported, or greater than zero if the flag is enabled.
ne_request_create.
Joe Orton
21 January 2023 | neon 0.32.5 |