Home
last modified time | relevance | path

Searched refs:hh (Results 1 – 5 of 5) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dmod_usertrack.c176 char hh[32]; in URIHANDLER_FUNC() local
226 LI_ltostr(hh, srv->cur_ts); in URIHANDLER_FUNC()
227 li_MD5_Update(&Md5Ctx, (unsigned char *)hh, strlen(hh)); in URIHANDLER_FUNC()
229 LI_ltostr(hh, rand()); in URIHANDLER_FUNC()
230 li_MD5_Update(&Md5Ctx, (unsigned char *)hh, strlen(hh)); in URIHANDLER_FUNC()
H A Dhttp_auth.c1181 char hh[32]; in http_auth_digest_generate_nonce() local
1191 LI_ltostr(hh, srv->cur_ts); in http_auth_digest_generate_nonce()
1192 li_MD5_Update(&Md5Ctx, (unsigned char *)hh, strlen(hh)); in http_auth_digest_generate_nonce()
1194 LI_ltostr(hh, rand()); in http_auth_digest_generate_nonce()
1195 li_MD5_Update(&Md5Ctx, (unsigned char *)hh, strlen(hh)); in http_auth_digest_generate_nonce()
H A Dhttp_auth.h71 int http_auth_digest_generate_nonce(server *srv, mod_auth_plugin_data *p, buffer *fn, char hh[33]);
H A Dmod_accesslog.c202 char hh[5] = {'\\','x',0,0,0}; in accesslog_append_escaped() local
204 hh[2] = (h > 9) ? (h - 10 + 'A') : (h + '0'); in accesslog_append_escaped()
206 hh[3] = (h > 9) ? (h - 10 + 'A') : (h + '0'); in accesslog_append_escaped()
207 buffer_append_string_len(dest, &hh[0], 4); in accesslog_append_escaped()
H A Dmod_auth.c290 char hh[33]; in mod_auth_uri_handler() local
291 http_auth_digest_generate_nonce(srv, p, srv->tmp_buf, hh); in mod_auth_uri_handler()
296 buffer_append_string(p->tmp_buf, hh); in mod_auth_uri_handler()