]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Add relationships to function documentation.
authorAndrew Latham <lathama@gmail.com>
Fri, 14 Jan 2011 19:35:20 +0000 (19:35 +0000)
committerAndrew Latham <lathama@gmail.com>
Fri, 14 Jan 2011 19:35:20 +0000 (19:35 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@301844 65c4cc65-6c06-0410-ace0-fbb531ad65f3

funcs/func_aes.c
funcs/func_base64.c

index 7cc8f4d575a164d59ce469507922255b67a00f45..15681442f33515358342e1eb41cc201a7a5ae462 100644 (file)
@@ -53,6 +53,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
                <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>
@@ -69,6 +74,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
                <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>
  ***/
 
index 34c6ec6ae90c74ec4fedab64174b5a83de948d94..bebbe89595080b0ad8a2e35fc7b5fa8b41ae2b9b 100644 (file)
@@ -44,6 +44,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
                <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>
@@ -57,6 +62,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
                <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>
  ***/