From: Fabian Keil Date: Wed, 30 Oct 2019 22:25:28 +0000 (+0100) Subject: Fix a couple of function description comments X-Git-Tag: v_3_0_29~572 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=a05a0685efd57f248b5770e6f4d95c43b4fcb402;hp=b40ce8d987a250f6ce14e506fc05bfa8e9e37f27 Fix a couple of function description comments --- diff --git a/ssl.c b/ssl.c index 0a45564d..4585ce13 100644 --- a/ssl.c +++ b/ssl.c @@ -884,6 +884,7 @@ static void free_server_ssl_structures(struct client_state *csp) /********************************************************************* + * * Function : close_client_and_server_ssl_connections * * Description : Checks if client or server should use secured @@ -910,6 +911,7 @@ extern void close_client_and_server_ssl_connections(struct client_state *csp) /*====================== Certificates ======================*/ /********************************************************************* + * * Function : write_certificate * * Description : Writes certificate into file. @@ -976,6 +978,7 @@ static int write_certificate(mbedtls_x509write_cert *crt, const char *output_fil /********************************************************************* + * * Function : write_private_key * * Description : Writes private key into file and copies saved @@ -1062,6 +1065,7 @@ exit: /********************************************************************* + * * Function : generate_key * * Description : Tests if private key for host saved in csp already @@ -1920,19 +1924,19 @@ static int file_exists(const char *path) /********************************************************************* -* -* Function : host_to_hash -* -* Description : Creates MD5 hash from host name. Host name is loaded -* from structure csp and saved again into it. -* -* Parameters : -* 1 : csp = Current client state (buffers, headers, etc...) -* -* Returns : 1 => Error while creating hash -* 0 => Hash created successfully -* -*********************************************************************/ + * + * Function : host_to_hash + * + * Description : Creates MD5 hash from host name. Host name is loaded + * from structure csp and saved again into it. + * + * Parameters : + * 1 : csp = Current client state (buffers, headers, etc...) + * + * Returns : 1 => Error while creating hash + * 0 => Hash created successfully + * + *********************************************************************/ static int host_to_hash(struct client_state * csp) { int ret = 0;