libpurple/cipher.c

branch
soc.2007.certmgr
changeset 17435
a42f7e095cfd
parent 17155
143ff2796376
child 17977
328f7ae1714b
child 19832
84b69b21672b
--- a/libpurple/cipher.c	Tue May 29 21:51:53 2007 +0000
+++ b/libpurple/cipher.c	Wed May 30 03:55:56 2007 +0000
@@ -1447,14 +1447,14 @@
  * Structs
  ******************************************************************************/
 struct _PurpleCipher {
-	gchar *name;
-	PurpleCipherOps *ops;
-	guint ref;
+	gchar *name;          /**< Internal name - used for searching */
+	PurpleCipherOps *ops; /**< Operations supported by this cipher */
+	guint ref;            /**< Reference count */
 };
 
 struct _PurpleCipherContext {
-	PurpleCipher *cipher;
-	gpointer data;
+	PurpleCipher *cipher; /**< Cipher this context is under */
+	gpointer data;        /**< Internal cipher state data */
 };
 
 /******************************************************************************

mercurial