table of contents
NE_SET_SESSION_FLAG(3) | neon API reference | NE_SET_SESSION_FLAG(3) |
NAME¶
ne_set_session_flag, ne_get_session_flag - set and retrieve session flags
SYNOPSIS¶
#include <ne_request.h>
void ne_set_session_flag(ne_session *sess, ne_session_flag flag, int value);
int ne_get_session_flag(ne_session *sess, ne_session_flag flag);
DESCRIPTION¶
The ne_set_session_flag function enables or disables a session flag. Passing a non-zero value argument enables the flag, and zero disables it.
The following flags are defined:
NE_SESSFLAG_PERSIST
NE_SESSFLAG_ICYPROTO
NE_SESSFLAG_SSLv2
NE_SESSFLAG_RFC4918
NE_SESSFLAG_CONNAUTH
NE_SESSFLAG_TLS_SNI
NE_SESSFLAG_EXPECT100
RETURN VALUE¶
The ne_get_session_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.
SEE ALSO¶
ne_session_create, ne_set_request_flag.
AUTHOR¶
Joe Orton <neon@lists.manyfish.co.uk>
COPYRIGHT¶
30 September 2016 | neon 0.30.2 |