From: Matthew Nicholson Date: Wed, 30 Sep 2009 23:15:17 +0000 (+0000) Subject: Make portinuri a bitfield. X-Git-Tag: 1.4.27-rc2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe4b70c4f5157db5f8e8b05292912cd441f26251;p=thirdparty%2Fasterisk.git Make portinuri a bitfield. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@221489 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index f3292a243a..d69d4c6d5d 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -1162,7 +1162,7 @@ struct sip_peer { 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 */