• Home
  • Raw
  • Download

Lines Matching refs:htp

254 int htp_msg_begincb(llhttp_t *htp);
255 int htp_hdr_keycb(llhttp_t *htp, const char *data, size_t len);
256 int htp_hdr_valcb(llhttp_t *htp, const char *data, size_t len);
257 int htp_hdrs_completecb(llhttp_t *htp);
258 int htp_bodycb(llhttp_t *htp, const char *data, size_t len);
259 int htp_msg_completecb(llhttp_t *htp);
890 int htp_msg_begincb(llhttp_t *htp) { in htp_msg_begincb() argument
891 auto downstream = static_cast<Downstream *>(htp->data); in htp_msg_begincb()
894 llhttp_set_error_reason(htp, "HTTP message started when it shouldn't"); in htp_msg_begincb()
903 int htp_hdrs_completecb(llhttp_t *htp) { in htp_hdrs_completecb() argument
904 auto downstream = static_cast<Downstream *>(htp->data); in htp_hdrs_completecb()
914 resp.http_status = htp->status_code; in htp_hdrs_completecb()
915 resp.http_major = htp->http_major; in htp_hdrs_completecb()
916 resp.http_minor = htp->http_minor; in htp_hdrs_completecb()
981 resp.connection_close = !llhttp_should_keep_alive(htp); in htp_hdrs_completecb()
1067 int htp_hdr_keycb(llhttp_t *htp, const char *data, size_t len) { in htp_hdr_keycb() argument
1068 auto downstream = static_cast<Downstream *>(htp->data); in htp_hdr_keycb()
1104 int htp_hdr_valcb(llhttp_t *htp, const char *data, size_t len) { in htp_hdr_valcb() argument
1105 auto downstream = static_cast<Downstream *>(htp->data); in htp_hdr_valcb()
1123 int htp_bodycb(llhttp_t *htp, const char *data, size_t len) { in htp_bodycb() argument
1124 auto downstream = static_cast<Downstream *>(htp->data); in htp_bodycb()
1135 int htp_msg_completecb(llhttp_t *htp) { in htp_msg_completecb() argument
1136 auto downstream = static_cast<Downstream *>(htp->data); in htp_msg_completecb()