[asterisk-commits] lathama: branch 1.6.2 r301842 - /branches/1.6.2/funcs/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jan 14 13:30:14 CST 2011


Author: lathama
Date: Fri Jan 14 13:30:10 2011
New Revision: 301842

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=301842
Log:
Add relationships to function documentation.

Modified:
    branches/1.6.2/funcs/func_aes.c
    branches/1.6.2/funcs/func_base64.c

Modified: branches/1.6.2/funcs/func_aes.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/funcs/func_aes.c?view=diff&rev=301842&r1=301841&r2=301842
==============================================================================
--- branches/1.6.2/funcs/func_aes.c (original)
+++ branches/1.6.2/funcs/func_aes.c Fri Jan 14 13:30:10 2011
@@ -50,6 +50,11 @@
 		<description>
 			<para>Returns an AES encrypted string encoded in base64.</para>
 		</description>
+		<see-also>
+			<ref type="application">AES_DECRYPT</ref>
+			<ref type="application">BASE64_ENCODE</ref>
+			<ref type="application">BASE64_DECODE</ref>
+		</see-also>
 	</function>
 	<function name="AES_DECRYPT" language="en_US">
 		<synopsis>
@@ -66,6 +71,11 @@
 		<description>
 			<para>Returns the plain text string.</para>
 		</description>
+		<see-also>
+			<ref type="application">AES_ENCRYPT</ref>
+			<ref type="application">BASE64_ENCODE</ref>
+			<ref type="application">BASE64_DECODE</ref>
+		</see-also>
 	</function>
  ***/
 

Modified: branches/1.6.2/funcs/func_base64.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/funcs/func_base64.c?view=diff&rev=301842&r1=301841&r2=301842
==============================================================================
--- branches/1.6.2/funcs/func_base64.c (original)
+++ branches/1.6.2/funcs/func_base64.c Fri Jan 14 13:30:10 2011
@@ -43,6 +43,11 @@
 		<description>
 			<para>Returns the base64 string.</para>
 		</description>
+		<see-also>
+			<ref type="application">BASE64_DECODE</ref>
+			<ref type="application">AES_DECRYPT</ref>
+			<ref type="application">AES_ENCRYPT</ref>
+		</see-also>
 	</function>
 	<function name="BASE64_DECODE" language="en_US">
 		<synopsis>
@@ -56,6 +61,11 @@
 		<description>
 			<para>Returns the plain text string.</para>
 		</description>
+		<see-also>
+			<ref type="application">BASE64_ENCODE</ref>
+			<ref type="application">AES_DECRYPT</ref>
+			<ref type="application">AES_ENCRYPT</ref>
+		</see-also>
 	</function>
  ***/
 




More information about the asterisk-commits mailing list