[asterisk-commits] mnicholson: branch 1.4 r221489 - /branches/1.4/channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Sep 30 18:15:21 CDT 2009


Author: mnicholson
Date: Wed Sep 30 18:15:17 2009
New Revision: 221489

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=221489
Log:
Make portinuri a bitfield.

Modified:
    branches/1.4/channels/chan_sip.c

Modified: branches/1.4/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=221489&r1=221488&r2=221489
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Wed Sep 30 18:15:17 2009
@@ -1162,7 +1162,7 @@
 	ast_group_t pickupgroup;	/*!<  Pickup group */
 	struct sockaddr_in addr;	/*!<  IP address of peer */
 	int maxcallbitrate;		/*!< Maximum Bitrate for a video call */
-	int portinuri;			/*!< Whether the port should be included in the URI */
+	int portinuri:1;		/*!< Whether the port should be included in the URI */
 	
 	/* Qualification */
 	struct sip_pvt *call;		/*!<  Call pointer */




More information about the asterisk-commits mailing list