Home
last modified time | relevance | path

Searched refs:EOL_RN (Results 1 – 2 of 2) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dmod_scgi.c44 enum {EOL_UNSET, EOL_N, EOL_RN}; enumerator
1698 NULL != (ns = (eol == EOL_RN ? strstr(s, "\r\n") : strchr(s, '\n'))); in scgi_response_parse()
1699 s = ns + (eol == EOL_RN ? 2 : 1), line++) { in scgi_response_parse()
1868 if (eol == EOL_UNSET) eol = EOL_RN; in scgi_demux_response()
H A Dmod_cgi.c41 enum {EOL_UNSET, EOL_N, EOL_RN}; enumerator