Revision 77edbde474cb494832afaa36054b10578a226774 authored by Junio C Hamano on 12 October 2021, 20:51:48 UTC, committed by Junio C Hamano on 12 October 2021, 20:51:48 UTC
Sensitive data in the HTTP trace were supposed to be redacted, but
we failed to do so in HTTP/2 requests.

* jk/http-redact-fix:
  http: match headers case-insensitively when redacting
2 parent s ef09a7f + b66c77a
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

int encode_varint(uintmax_t, unsigned char *);
uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top