[svn-commits] rmudgett: branch rmudgett/misdn_facility r183870 - /team/rmudgett/misdn_facil...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Mar 23 18:49:22 CDT 2009


Author: rmudgett
Date: Mon Mar 23 18:49:19 2009
New Revision: 183870

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=183870
Log:
Doxygen comment changes.

Modified:
    team/rmudgett/misdn_facility/channels/misdn/isdn_lib.h

Modified: team/rmudgett/misdn_facility/channels/misdn/isdn_lib.h
URL: http://svn.digium.com/svn-view/asterisk/team/rmudgett/misdn_facility/channels/misdn/isdn_lib.h?view=diff&rev=183870&r1=183869&r2=183870
==============================================================================
--- team/rmudgett/misdn_facility/channels/misdn/isdn_lib.h (original)
+++ team/rmudgett/misdn_facility/channels/misdn/isdn_lib.h Mon Mar 23 18:49:19 2009
@@ -203,12 +203,18 @@
  */
 enum mISDN_REDIRECTING_REASON {
 	mISDN_REDIRECTING_REASON_UNKNOWN = 0x0,
-	mISDN_REDIRECTING_REASON_CALL_FWD_BUSY = 0x1,	/* Call forwarding busy or called DTE busy */
-	mISDN_REDIRECTING_REASON_NO_REPLY = 0x2,		/* Call forwarding no reply */
-	mISDN_REDIRECTING_REASON_DEFLECTION = 0x4,		/* Call deflection */
-	mISDN_REDIRECTING_REASON_OUT_OF_ORDER = 0x9,	/* Called DTE out of order */
-	mISDN_REDIRECTING_REASON_CALL_FWD_DTE = 0xA,	/* Call forwarding by the called DTE */
-	mISDN_REDIRECTING_REASON_CALL_FWD = 0xF			/* Call forwarding unconditional or systematic call redirection */
+	/*! Call forwarding busy or called DTE busy */
+	mISDN_REDIRECTING_REASON_CALL_FWD_BUSY = 0x1,
+	/*! Call forwarding no reply */
+	mISDN_REDIRECTING_REASON_NO_REPLY = 0x2,
+	/*! Call deflection */
+	mISDN_REDIRECTING_REASON_DEFLECTION = 0x4,
+	/*! Called DTE out of order */
+	mISDN_REDIRECTING_REASON_OUT_OF_ORDER = 0x9,
+	/*! Call forwarding by the called DTE */
+	mISDN_REDIRECTING_REASON_CALL_FWD_DTE = 0xA,
+	/*! Call forwarding unconditional or systematic call redirection */
+	mISDN_REDIRECTING_REASON_CALL_FWD = 0xF
 };
 
 /*!
@@ -216,12 +222,18 @@
  */
 enum mISDN_NOTIFY_CODE {
 	mISDN_NOTIFY_CODE_INVALID = -1,
-	mISDN_NOTIFY_CODE_USER_SUSPEND = 0x00,			/* Call is placed on hold (Q.931) */
-	mISDN_NOTIFY_CODE_USER_RESUME = 0x01,			/* Call is taken off of hold (Q.931) */
-	mISDN_NOTIFY_CODE_CALL_IS_DIVERTING = 0x7B,		/* Call is diverting (EN 300 207-1 Section 7.2.1) */
-	mISDN_NOTIFY_CODE_DIVERSION_ACTIVATED = 0x68,	/* Call diversion is enabled (cfu, cfb, cfnr) (EN 300 207-1 Section 7.2.1) */
-	mISDN_NOTIFY_CODE_CALL_TRANSFER_ALERTING = 0x69,/* Call transfer, alerting (EN 300 369-1 Section 7.2) */
-	mISDN_NOTIFY_CODE_CALL_TRANSFER_ACTIVE = 0x6A,	/* Call transfer, active(answered) (EN 300 369-1 Section 7.2) */
+	/*! Call is placed on hold (Q.931) */
+	mISDN_NOTIFY_CODE_USER_SUSPEND = 0x00,
+	/*! Call is taken off of hold (Q.931) */
+	mISDN_NOTIFY_CODE_USER_RESUME = 0x01,
+	/*! Call is diverting (EN 300 207-1 Section 7.2.1) */
+	mISDN_NOTIFY_CODE_CALL_IS_DIVERTING = 0x7B,
+	/*! Call diversion is enabled (cfu, cfb, cfnr) (EN 300 207-1 Section 7.2.1) */
+	mISDN_NOTIFY_CODE_DIVERSION_ACTIVATED = 0x68,
+	/*! Call transfer, alerting (EN 300 369-1 Section 7.2) */
+	mISDN_NOTIFY_CODE_CALL_TRANSFER_ALERTING = 0x69,
+	/*! Call transfer, active(answered) (EN 300 369-1 Section 7.2) */
+	mISDN_NOTIFY_CODE_CALL_TRANSFER_ACTIVE = 0x6A,
 };
 
 enum { /*CODECS*/
@@ -237,16 +249,16 @@
 	UNKNOWN
 };
 
-/* Maximum phone number (address) length plus null terminator */
+/*! Maximum phone number (address) length plus null terminator */
 #define MISDN_MAX_NUMBER_LEN		(31 + 1)
 
-/* Maximum name length plus null terminator (From ECMA-164) */
+/*! Maximum name length plus null terminator (From ECMA-164) */
 #define MISDN_MAX_NAME_LEN			(50 + 1)
 
-/* Maximum subaddress length plus null terminator */
+/*! Maximum subaddress length plus null terminator */
 #define MISDN_MAX_SUBADDRESS_LEN	(23 + 1)
 
-/* Maximum keypad facility content length plus null terminator */
+/*! Maximum keypad facility content length plus null terminator */
 #define MISDN_MAX_KEYPAD_LEN		(31 + 1)
 
 /*! \brief Dialed/Called information struct */
@@ -805,4 +817,4 @@
 void misdn_make_dummy(struct misdn_bchannel *dummybc, int port, int l3id, int nt, int channel);
 
 
-#endif
+#endif	/* TE_LIB */




More information about the svn-commits mailing list