[asterisk-commits] oej: trunk r42753 - /trunk/channels/chan_sip.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Sep 11 11:45:11 MST 2006


Author: oej
Date: Mon Sep 11 13:45:10 2006
New Revision: 42753

URL: http://svn.digium.com/view/asterisk?rev=42753&view=rev
Log:
Ignore this. Only whitespace fixes while being bored.

Modified:
    trunk/channels/chan_sip.c

Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=42753&r1=42752&r2=42753&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Sep 11 13:45:10 2006
@@ -534,14 +534,14 @@
 static int noncodeccapability = AST_RTP_DTMF;
 
 /* Object counters */
-static int suserobjs = 0;		/*!< Static users */
-static int ruserobjs = 0;		/*!< Realtime users */
-static int speerobjs = 0;		/*!< Statis peers */
-static int rpeerobjs = 0;		/*!< Realtime peers */
-static int apeerobjs = 0;		/*!< Autocreated peer objects */
-static int regobjs = 0;			/*!< Registry objects */
-
-static struct ast_flags global_flags[2] = {{0}};	/*!< global SIP_ flags */
+static int suserobjs = 0;                /*!< Static users */
+static int ruserobjs = 0;                /*!< Realtime users */
+static int speerobjs = 0;                /*!< Statis peers */
+static int rpeerobjs = 0;                /*!< Realtime peers */
+static int apeerobjs = 0;                /*!< Autocreated peer objects */
+static int regobjs = 0;                  /*!< Registry objects */
+
+static struct ast_flags global_flags[2] = {{0}};        /*!< global SIP_ flags */
 
 /*! \brief Protect the SIP dialog list (of sip_pvt's) */
 AST_MUTEX_DEFINE_STATIC(iflock);
@@ -558,11 +558,11 @@
    which are not currently in use.  */
 static pthread_t monitor_thread = AST_PTHREADT_NULL;
 
-static int sip_reloading = FALSE;			/*!< Flag for avoiding multiple reloads at the same time */
-static enum channelreloadreason sip_reloadreason;	/*!< Reason for last reload/load of configuration */
-
-static struct sched_context *sched;	/*!< The scheduling context */
-static struct io_context *io;		/*!< The IO context */
+static int sip_reloading = FALSE;                       /*!< Flag for avoiding multiple reloads at the same time */
+static enum channelreloadreason sip_reloadreason;       /*!< Reason for last reload/load of configuration */
+
+static struct sched_context *sched;     /*!< The scheduling context */
+static struct io_context *io;           /*!< The IO context */
 
 #define DEC_CALL_LIMIT	0
 #define INC_CALL_LIMIT	1
@@ -571,18 +571,18 @@
 
 /*! \brief sip_request: The data grabbed from the UDP socket */
 struct sip_request {
-	char *rlPart1; 		/*!< SIP Method Name or "SIP/2.0" protocol version */
-	char *rlPart2; 		/*!< The Request URI or Response Status */
-	int len;		/*!< Length */
-	int headers;		/*!< # of SIP Headers */
-	int method;		/*!< Method of this request */
-	int lines;		/*!< Body Content */
-	unsigned int flags;	/*!< SIP_PKT Flags for this packet */
+	char *rlPart1; 	        /*!< SIP Method Name or "SIP/2.0" protocol version */
+	char *rlPart2; 	        /*!< The Request URI or Response Status */
+	int len;                /*!< Length */
+	int headers;            /*!< # of SIP Headers */
+	int method;             /*!< Method of this request */
+	int lines;              /*!< Body Content */
+	unsigned int flags;     /*!< SIP_PKT Flags for this packet */
 	char *header[SIP_MAX_HEADERS];
 	char *line[SIP_MAX_LINES];
 	char data[SIP_MAX_PACKET];
 	unsigned int sdp_start; /*!< the line number where the SDP begins */
-	unsigned int sdp_end;	/*!< the line number where the SDP ends */
+	unsigned int sdp_end;   /*!< the line number where the SDP ends */
 };
 
 /*



More information about the asterisk-commits mailing list