Lines Matching refs:tmp_buf
35 p->tmp_buf = buffer_init(); in INIT_FUNC()
52 buffer_free(p->tmp_buf); in FREE_FUNC()
284 buffer_copy_string_len(p->tmp_buf, CONST_STR_LEN("Basic realm=\"")); in mod_auth_uri_handler()
285 buffer_append_string_buffer(p->tmp_buf, realm->value); in mod_auth_uri_handler()
286 buffer_append_string_len(p->tmp_buf, CONST_STR_LEN("\"")); in mod_auth_uri_handler()
288 response_header_insert(srv, con, CONST_STR_LEN("WWW-Authenticate"), CONST_BUF_LEN(p->tmp_buf)); in mod_auth_uri_handler()
291 http_auth_digest_generate_nonce(srv, p, srv->tmp_buf, hh); in mod_auth_uri_handler()
293 buffer_copy_string_len(p->tmp_buf, CONST_STR_LEN("Digest realm=\"")); in mod_auth_uri_handler()
294 buffer_append_string_buffer(p->tmp_buf, realm->value); in mod_auth_uri_handler()
295 buffer_append_string_len(p->tmp_buf, CONST_STR_LEN("\", nonce=\"")); in mod_auth_uri_handler()
296 buffer_append_string(p->tmp_buf, hh); in mod_auth_uri_handler()
297 buffer_append_string_len(p->tmp_buf, CONST_STR_LEN("\", qop=\"auth\"")); in mod_auth_uri_handler()
299 response_header_insert(srv, con, CONST_STR_LEN("WWW-Authenticate"), CONST_BUF_LEN(p->tmp_buf)); in mod_auth_uri_handler()