X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=ssl.c;h=30b6f583e70e65feea1f6e17908697aaec9a1229;hp=50b8f7766041d01a93c74a909e0b9631ba507b64;hb=07d3ffdfb75d55d07fa8fc9e79f7829d9e8e476f;hpb=29f92b43c77a40b93fcd835a1d0d3be31e9d7399 diff --git a/ssl.c b/ssl.c index 50b8f776..30b6f583 100644 --- a/ssl.c +++ b/ssl.c @@ -105,7 +105,7 @@ static int seed_rng(struct client_state *csp); * or has not yet been sent by the remote end. * * Parameters : - * 1 : ssl = SSL context to test + * 1 : ssl_attr = SSL context to test * * Returns : 0 => No data are pending * >0 => Pending data length @@ -131,7 +131,7 @@ extern size_t is_ssl_pending(struct ssl_attr *ssl_attr) * connection context. * * Parameters : - * 1 : ssl = SSL context to send data to + * 1 : ssl_attr = SSL context to send data to * 2 : buf = Pointer to data to be sent * 3 : len = Length of data to be sent to the SSL context * @@ -206,7 +206,7 @@ extern int ssl_send_data(struct ssl_attr *ssl_attr, const unsigned char *buf, si * it into buffer. * * Parameters : - * 1 : ssl = SSL context to receive data from + * 1 : ssl_attr = SSL context to receive data from * 2 : buf = Pointer to buffer where data will be written * 3 : max_length = Maximum number of bytes to read *