Elia Pinto <gitter.spiros@xxxxxxxxx> writes: > Add the debug callback and helper routine prototype used by > curl_easy_setopt CURLOPT_DEBUGFUNCTION in http.c > for implementing the GIT_TRACE_CURL environment variable > > > Helped-by: Torsten Bögershausen <tboegi@xxxxxx> > Helped-by: Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxxx> > Helped-by: Junio C Hamano <gitster@xxxxxxxxx> > Helped-by: Eric Sunshine <sunshine@xxxxxxxxxxxxxx> > Helped-by: Jeff King <peff@xxxxxxxx> > Signed-off-by: Elia Pinto <gitter.spiros@xxxxxxxxx> > --- > http.h | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/http.h b/http.h > index 4ef4bbd..a2d10bc 100644 > --- a/http.h > +++ b/http.h > @@ -224,4 +224,10 @@ extern int finish_http_object_request(struct http_object_request *freq); > extern void abort_http_object_request(struct http_object_request *freq); > extern void release_http_object_request(struct http_object_request *freq); > > +/* Debug callback and helper routine for curl_easy_setopt CURLOPT_DEBUGFUNCTION */ > +static struct trace_key trace_curl = TRACE_KEY_INIT(CURL); This will be multiply instanciated in every *.c file that includes http.h? > +int curl_trace(CURL *handle, curl_infotype type, char *data, size_t size, void *userp); > +void curl_dump(const char *text, unsigned char *ptr, size_t size, char nohex); > + > + > #endif /* HTTP_H */ In any case, you'd want to combine this with 2/4 and write a single log message for the combined change. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html