Searched defs:rtext (Results 1 - 2 of 2) sorted by relevance

/dovecot/src/lib-http/
H A Dhttp-server-response.c563 string_t *rtext = t_str_new(256); local
571 str_append(rtext, "HTTP/1.1 ");
572 str_printfa(rtext, "%u", resp->status);
573 str_append(rtext, " ");
574 str_append(rtext, resp->reason);
579 str_append(rtext, "\r\nDate: ");
580 str_append(rtext, http_date_create(resp->date));
581 str_append(rtext, "\r\n");
584 str_append(rtext, "WWW-Authenticate: ");
585 http_auth_create_challenges(rtext,
[all...]
H A Dhttp-client-request.c1196 string_t *rtext = t_str_new(256); local
1203 str_append(rtext, req->method);
1204 str_append(rtext, " ");
1205 str_append(rtext, req->target);
1206 str_append(rtext, " HTTP/1.1\r\n");
1211 str_append(rtext, "Host: ");
1212 str_append(rtext, req->authority);
1213 str_append(rtext, "\r\n");
1216 str_append(rtext, "Date: ");
1217 str_append(rtext, http_date_creat
[all...]

Completed in 23 milliseconds