Module: sip-router
Branch: master
Commit: 258b58e29fe9e63a75d853d1826fe9c4b9a5f0ab
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=258b58e…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Sat Apr 17 11:46:44 2010 +0200
core: sip warning header disabled by default
- do not append Warning header to local generated replies by default
- it can be enabled from config file via sip_warning parameter
---
main.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/main.c b/main.c
index 64913c1..23db569 100644
--- a/main.c
+++ b/main.c
@@ -344,10 +344,10 @@ int phone2tel = 1;
int syn_branch = 1;
/* debugging level for timer debugging */
int timerlog = L_WARN;
-/* should replies include extensive warnings? by default yes,
+/* should replies include extensive warnings? by default no,
good for trouble-shooting
*/
-int sip_warning = 1;
+int sip_warning = 0;
/* should localy-generated messages include server's signature?
be default yes, good for trouble-shooting
*/