Home
last modified time | relevance | path

Searched refs:qlog_file (Results 1 – 2 of 2) sorted by relevance

/third_party/nghttp2/src/
Dh2load_quic.cc256 assert(quic.qlog_file != nullptr); in quic_write_qlog()
257 fwrite(data, 1, datalen, quic.qlog_file); in quic_write_qlog()
375 assert(quic.qlog_file == nullptr); in quic_init()
382 quic.qlog_file = fopen(path.c_str(), "w"); in quic_init()
383 if (quic.qlog_file == nullptr) { in quic_init()
439 if (quic.qlog_file != nullptr) { in quic_free()
440 fclose(quic.qlog_file); in quic_free()
441 quic.qlog_file = nullptr; in quic_free()
Dh2load.h347 FILE *qlog_file; member