[svn-commits] dlee: branch dlee/ari-authn r393041 - /team/dlee/ari-authn/res/stasis_http/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jun 26 22:19:02 CDT 2013


Author: dlee
Date: Wed Jun 26 22:19:00 2013
New Revision: 393041

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=393041
Log:
Comment fixing

Modified:
    team/dlee/ari-authn/res/stasis_http/internal.h

Modified: team/dlee/ari-authn/res/stasis_http/internal.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/ari-authn/res/stasis_http/internal.h?view=diff&rev=393041&r1=393040&r2=393041
==============================================================================
--- team/dlee/ari-authn/res/stasis_http/internal.h (original)
+++ team/dlee/ari-authn/res/stasis_http/internal.h Wed Jun 26 22:19:00 2013
@@ -77,14 +77,18 @@
 	ARI_PASSWORD_FORMAT_CRYPT,
 };
 
+/*!
+ * \brief User's password mx length.
+ *
+ * If 256 seems like a lot, a crypt SHA-512 has over 106 characters.
+ */
 #define ARI_PASSWORD_LEN 256
 
 /*! \brief Per-user configuration options */
 struct ari_conf_user {
 	/*! Username for authentication */
 	char *username;
-	/*! User's password. If 256 seems like a lot, a crypt SHA-512 has over
-	 *  100 characters */
+	/*! User's password. */
 	char password[ARI_PASSWORD_LEN];
 	/*! Format for the password field */
 	enum ari_password_format password_format;




More information about the svn-commits mailing list