MCPcopy Create free account
hub / github.com/apache/httpd / H2_STREAM_OUT_LOG

Function H2_STREAM_OUT_LOG

modules/http2/h2_stream.c:187–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185 void *puser);
186
187static void H2_STREAM_OUT_LOG(int lvl, h2_stream *s, const char *tag)
188{
189 if (APLOG_C_IS_LEVEL(s->session->c1, lvl)) {
190 conn_rec *c = s->session->c1;
191 char buffer[4 * 1024];
192 apr_size_t len, bmax = sizeof(buffer)/sizeof(buffer[0]);
193
194 len = h2_util_bb_print(buffer, bmax, tag, "", s->out_buffer);
195 ap_log_cerror(APLOG_MARK, lvl, 0, c,
196 H2_STRM_MSG(s, "out-buffer(%s)"), len? buffer : "empty");
197 }
198}
199
200static void stream_setup_input(h2_stream *stream)
201{

Callers 1

buffer_output_receiveFunction · 0.85

Calls 1

h2_util_bb_printFunction · 0.85

Tested by

no test coverage detected