aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-09 16:39:16 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-09 16:39:16 +0000
commit1c8d9745b8c1e2cabfcdf57ac15bb0ebd0c90d2a (patch)
tree46559c63effed0ce27dd1676cad7c95ec112b515 /channels
parent0509932d417ce34ea6eff2aa5de815acb7cac3fb (diff)
Return logic of sip_debug_test_addr() to its original functionality.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@275104 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index d9a97fcfa..ad6e00ab2 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -2881,7 +2881,24 @@ static int find_sip_method(const char *msg)
/*! \brief See if we pass debug IP filter */
static inline int sip_debug_test_addr(const struct ast_sockaddr *addr)
{
- return sipdebug && !ast_sockaddr_isnull(addr) && !ast_sockaddr_cmp_addr(&debugaddr, addr);
+ /* Can't debug if sipdebug is not enabled */
+ if (!sipdebug) {
+ return 0;
+ }
+
+ /* A null debug_addr means we'll debug any address */
+ if (ast_sockaddr_isnull(&debugaddr)) {
+ return 1;
+ }
+
+ /* If no port was specified for a debug address, just compare the
+ * addresses, otherwise compare the address and port
+ */
+ if (ast_sockaddr_port(&debugaddr)) {
+ return !ast_sockaddr_cmp(&debugaddr, addr);
+ } else {
+ return !ast_sockaddr_cmp_addr(&debugaddr, addr);
+ }
}
/*! \brief The real destination address for a write */