Home
last modified time | relevance | path

Searched refs:trailer_names (Results 1 – 4 of 4) sorted by relevance

/third_party/nghttp2/src/
Dnghttpd.cc480 auto &trailer_names = config.trailer_names; in main() local
482 trailer_names += h.name; in main()
483 trailer_names += ", "; in main()
485 if (trailer_names.size() >= 2) { in main()
486 trailer_names.resize(trailer_names.size() - 2); in main()
DHttpServer.cc956 auto &trailer_names = get_config()->trailer_names; in submit_file_response() local
957 if (!trailer_names.empty()) { in submit_file_response()
958 nva[nvlen++] = http2::make_nv_ls_nocopy("trailer", trailer_names); in submit_file_response()
974 auto &trailer_names = get_config()->trailer_names; in submit_response() local
975 if (!trailer_names.empty()) { in submit_response()
976 nva.push_back(http2::make_nv_ls_nocopy("trailer", trailer_names)); in submit_response()
997 auto &trailer_names = get_config()->trailer_names; in submit_response() local
998 if (!trailer_names.empty()) { in submit_response()
999 nva[nvlen++] = http2::make_nv_ls_nocopy("trailer", trailer_names); in submit_response()
DHttpServer.h57 std::string trailer_names; member
Dnghttp.cc511 std::string trailer_names; in submit_request() local
513 trailer_names = config.trailer[0].name; in submit_request()
515 trailer_names += ", "; in submit_request()
516 trailer_names += config.trailer[i].name; in submit_request()
518 nva.push_back(http2::make_nv_ls("trailer", trailer_names)); in submit_request()