summaryrefslogtreecommitdiff
path: root/pjlib/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-09-22 16:55:42 +0000
committerBenny Prijono <bennylp@teluu.com>2006-09-22 16:55:42 +0000
commite7e08fc3b6b09d3dba5dce0307dfc0dbad5f9aef (patch)
tree28e16b92c48230f140485586c3267db86188b372 /pjlib/include
parent8f0078e1663ab2d5d6b25a0d5745f5c14ed9ab18 (diff)
Fixed few bugs that seem to have been introduced by new dialog
locking algorithm: - Fixed crash in PJSUA-API when initiating client subscription - Fixed another crash in PJSUA-API when hanging-up call Also fixed SDP negotiator: - add a=inactive when rejecting media line Also increase maximum log size from 1500 to 2000 since some SIP packet is quite large. A little bit of Warning: ** THIS MAY AFFECT APPLICATION'S STACK USAGE ** git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@734 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include')
-rw-r--r--pjlib/include/pj/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjlib/include/pj/config.h b/pjlib/include/pj/config.h
index 71bf37c3..15fa638a 100644
--- a/pjlib/include/pj/config.h
+++ b/pjlib/include/pj/config.h
@@ -344,10 +344,10 @@
* This may affect the stack usage, depending whether PJ_LOG_USE_STACK_BUFFER
* flag is set.
*
- * Default: 1500
+ * Default: 2000
*/
#ifndef PJ_LOG_MAX_SIZE
-# define PJ_LOG_MAX_SIZE 1500
+# define PJ_LOG_MAX_SIZE 2000
#endif
/**