Opened 18 years ago
Last modified 18 years ago
#249 closed defect
Problems with big memory blocks in Symbian — at Version 1
Reported by: | bennylp | Owned by: | bennylp |
---|---|---|---|
Priority: | normal | Milestone: | Symbian-trunk-integration |
Component: | common | Version: | trunk |
Keywords: | Cc: | ||
Backport to 1.x milestone: | Backported: |
Description (last modified by bennylp)
Default block size of 4000 bytes is causing problem in Symbian. Here's the settings that work:
#define PJSIP_POOL_LEN_ENDPT 1000 #define PJSIP_POOL_INC_ENDPT 1000 #define PJSIP_POOL_RDATA_LEN 2000 #define PJSIP_POOL_RDATA_INC 2000 #define PJSIP_POOL_LEN_TDATA 2000 #define PJSIP_POOL_INC_TDATA 512 #define PJSIP_POOL_LEN_UA 2000 #define PJSIP_POOL_INC_UA 1000 /* Pool for transaction layer (dump shows 228 bytes). */ #define PJSIP_POOL_TSX_LAYER_LEN 256 #define PJSIP_POOL_TSX_LAYER_INC 256 /* Pool for transaction. The dump shows 468 bytes */ #define PJSIP_POOL_TSX_LEN 512 #define PJSIP_POOL_TSX_INC 128
Note: See
TracTickets for help on using
tickets.