aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-08 18:03:57 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-08 18:03:57 +0000
commit9966a44f6b479ad315279e81b0a0cdaa20855e26 (patch)
tree7aa2a35bb399576874f11470976ea55f3fe9be56
parent7f25157e9cbedb88202b2f389e6d4baebdc1ef74 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@39377 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 686862668..e359b407e 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -596,7 +596,7 @@ static int global_rtautoclear;
static struct sip_pvt {
ast_mutex_t lock; /*!< Channel private lock */
int method; /*!< SIP method of this packet */
- char callid[80]; /*!< Global CallID */
+ char callid[128]; /*!< Global CallID */
char randdata[80]; /*!< Random data */
struct ast_codec_pref prefs; /*!< codec prefs */
unsigned int ocseq; /*!< Current outgoing seqno */
@@ -842,7 +842,7 @@ struct sip_registry {
struct sip_pvt *call; /*!< create a sip_pvt structure for each outbound "registration call" in progress */
int regstate; /*!< Registration state (see above) */
int callid_valid; /*!< 0 means we haven't chosen callid for this registry yet. */
- char callid[80]; /*!< Global CallID for this registry */
+ char callid[128]; /*!< Global CallID for this registry */
unsigned int ocseq; /*!< Sequence number we got to for REGISTERs for this registry */
struct sockaddr_in us; /*!< Who the server thinks we are */