X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=net.c;h=bc7d234bfa2ec01619d8bc698dfb2841053b0eca;hp=a9708fcb51bcb88f1bd58aa525f42c1a22f9625d;hb=de25f9d0d999b2a911ecc93d19511ff437211d18;hpb=9503f937af157874ef1ac598a5b6dfe41326a171;ds=inline diff --git a/net.c b/net.c index a9708fcb..bc7d234b 100644 --- a/net.c +++ b/net.c @@ -12,21 +12,23 @@ #include "error.h" -/** holds information about one encrypted connection */ +/** Information about one encrypted connection. */ struct crypt_data { - /** function used to decrypt received data */ + /** Function used to decrypt received data. */ crypt_function *recv; - /** function used to encrypt data to be sent */ + /** Function used to encrypt data to be sent. */ crypt_function *send; - /** context-dependent data, passed to \a recv() and \a send() */ + /** + * Context-dependent data (crypt keys), passed verbatim to the above + * crypt functions. + */ void *private_data; }; -/** array holding per fd crypt data per */ +/** Array holding per fd crypt data. */ static struct crypt_data *crypt_data_array; -/** current size of the crypt data array */ +/** Current size of the crypt data array. */ static unsigned cda_size = 0; - /** * activate encryption for one file descriptor *