MCPcopy Create free account
hub / github.com/nodejs/undici / llhttp__debug

Function llhttp__debug

deps/llhttp/src/api.c:500–509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

498
499
500void llhttp__debug(llhttp_t* s, const char* p, const char* endp,
501 const char* msg) {
502 if (p == endp) {
503 fprintf(stderr, "p=%p type=%d flags=%02x next=null debug=%s\n", s, s->type,
504 s->flags, msg);
505 } else {
506 fprintf(stderr, "p=%p type=%d flags=%02x next=%02x debug=%s\n", s,
507 s->type, s->flags, *p, msg);
508 }
509}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected