From b56c9eb48e3cad89d35963f0934571bf5de48ab2 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Tue, 12 Feb 2013 18:08:48 +0000 Subject: pingpong: Optimised the endofresp() function Reworked the pp->endofresp() function so that the conndata, line and line length are passed down to it just as with Curl_client_write() rather than each implementation of the function having to query these values. Additionally changed the int return type to bool as this is more representative of the function's usage. --- lib/pingpong.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/pingpong.h') diff --git a/lib/pingpong.h b/lib/pingpong.h index b48c1ed61..b99070f4f 100644 --- a/lib/pingpong.h +++ b/lib/pingpong.h @@ -64,7 +64,7 @@ struct pingpong { CURLcode (*statemach_act)(struct connectdata *conn); - int (*endofresp)(struct pingpong *pp, int *code); + bool (*endofresp)(struct connectdata *conn, char *ptr, size_t len, int *code); }; /* -- cgit v1.2.3