Browse Source

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
Daniel-Constantin Mierla 15 years ago
parent
commit
258b58e29f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      main.c

+ 2 - 2
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
 */