Module: sip-router
Branch: ser_core_cvs
Commit: 1acade4541c8665f11800677f0ffe9ebf8608194
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1acade4…
Author: Michal Matyska <michal.matyska(a)iptel.org>
Committer: Michal Matyska <michal.matyska(a)iptel.org>
Date: Tue Dec 9 14:09:22 2008 +0000
sctp protocol decoded in RPC dst_blacklist.view
so it does not show unknown protocol anymore
---
dst_blacklist.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dst_blacklist.c b/dst_blacklist.c
index 3464517..bb6e35e 100644
--- a/dst_blacklist.c
+++ b/dst_blacklist.c
@@ -879,6 +879,8 @@ static char* get_proto_name(unsigned char proto)
return "tcp";
case PROTO_TLS:
return "tls";
+ case PROTO_SCTP:
+ return "sctp";
default:
return "unknown";
}