Merged revisions 304245 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

................
  r304245 | mnicholson | 2011-01-26 14:43:27 -0600 (Wed, 26 Jan 2011) | 20 lines
  
  Merged revisions 304244 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.6.2
  
  ................
    r304244 | mnicholson | 2011-01-26 14:42:16 -0600 (Wed, 26 Jan 2011) | 13 lines
    
    Merged revisions 304241 via svnmerge from 
    https://origsvn.digium.com/svn/asterisk/branches/1.4
    
    ........
      r304241 | mnicholson | 2011-01-26 14:38:22 -0600 (Wed, 26 Jan 2011) | 6 lines
      
      This patch modifies chan_sip to route responses to the address the request came from.  It also modifies chan_sip to respect the maddr parameter in the Via header.
      
      ABE-2664
      
      Review: https://reviewboard.asterisk.org/r/1059/
    ........
  ................
................


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@304246 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Matthew Nicholson
2011-01-26 20:44:47 +00:00
parent 8db5da18cf
commit 48a9694ed0
6 changed files with 321 additions and 91 deletions

View File

@@ -385,6 +385,20 @@ int ast_sockaddr_is_ipv4(const struct ast_sockaddr *addr);
*/
int ast_sockaddr_is_ipv4_mapped(const struct ast_sockaddr *addr);
/*!
* \since 1.10
*
* \brief
* Determine if an IPv4 address is a multicast address
*
* \parm addr the address to check
*
* This function checks if an address is in the 224.0.0.0/4 network block.
*
* \return non-zero if this is a multicast address
*/
int ast_sockaddr_is_ipv4_multicast(const struct ast_sockaddr *addr);
/*!
* \since 1.8
*