[asterisk-commits] kmoore: branch 1.8 r370014 - /branches/1.8/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jul 12 15:05:10 CDT 2012
Author: kmoore
Date: Thu Jul 12 15:05:01 2012
New Revision: 370014
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=370014
Log:
Include Expires header for SIP PUBLISH requests
RFC3903 requres SIP PUBLISH requests to have Expires headers, so add
them.
Review: https://reviewboard.asterisk.org/r/2003/
Patch-by: gareth
Modified:
branches/1.8/channels/chan_sip.c
Modified: branches/1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_sip.c?view=diff&rev=370014&r1=370013&r2=370014
==============================================================================
--- branches/1.8/channels/chan_sip.c (original)
+++ branches/1.8/channels/chan_sip.c Thu Jul 12 15:05:01 2012
@@ -10318,7 +10318,7 @@
add_header(resp, "Session-Expires", se_hdr);
}
- if (msg[0] == '2' && (p->method == SIP_SUBSCRIBE || p->method == SIP_REGISTER)) {
+ if (msg[0] == '2' && (p->method == SIP_SUBSCRIBE || p->method == SIP_REGISTER || p->method == SIP_PUBLISH)) {
/* For registration responses, we also need expiry and
contact info */
char tmp[256];
More information about the asterisk-commits
mailing list