[Privoxy-commits] [privoxy] 04/30: Rename receive_encrypted_request() to receive_encrypted_request_headers()
User Git
git at git.privoxy.org
Thu Nov 11 04:41:54 UTC 2021
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit df19de2ff49c49a8d66198216422026dab2fa9de
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sat Mar 27 15:44:10 2021 +0100
Rename receive_encrypted_request() to receive_encrypted_request_headers()
... and update the comment description.
---
jcc.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/jcc.c b/jcc.c
index 16b71da2..ec8c2ff6 100644
--- a/jcc.c
+++ b/jcc.c
@@ -2520,9 +2520,10 @@ static int send_https_request(struct client_state *csp)
/*********************************************************************
*
- * Function : receive_encrypted_request
+ * Function : receive_encrypted_request_headers
*
- * Description : Receives an encrypted request.
+ * Description : Receives the encrypted request headers when
+ * https-inspecting.
*
* Parameters :
* 1 : csp = Current client state (buffers, headers, etc...)
@@ -2531,7 +2532,7 @@ static int send_https_request(struct client_state *csp)
* JB_ERR_PARSE or JB_ERR_MEMORY otherwise
*
*********************************************************************/
-static jb_err receive_encrypted_request(struct client_state *csp)
+static jb_err receive_encrypted_request_headers(struct client_state *csp)
{
char buf[BUFFER_SIZE];
int len;
@@ -2703,7 +2704,7 @@ static jb_err process_encrypted_request(struct client_state *csp)
csp->flags |= CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE;
}
#endif
- err = receive_encrypted_request(csp);
+ err = receive_encrypted_request_headers(csp);
if (err != JB_ERR_OK)
{
if (csp->client_iob->cur == NULL ||
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list