Changeset 6102
- Timestamp:
- Nov 7, 2019 3:22:42 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsip/sip_config.h
r6055 r6102 895 895 896 896 897 /* Endpoint. */ 898 #define PJSIP_MAX_TIMER_COUNT (2*pjsip_cfg()->tsx.max_count + \ 897 /** 898 * Specify the maximum number of timer entries initially allocated by 899 * endpoint. If the application registers more entries during runtime, 900 * then the timer will automatically resize. 901 * 902 * Default: (2*pjsip_cfg()->tsx.max_count) + (2*PJSIP_MAX_DIALOG_COUNT) 903 */ 904 #ifndef PJSIP_MAX_TIMER_COUNT 905 # define PJSIP_MAX_TIMER_COUNT (2*pjsip_cfg()->tsx.max_count + \ 899 906 2*PJSIP_MAX_DIALOG_COUNT) 907 #endif 900 908 901 909 /**
Note: See TracChangeset
for help on using the changeset viewer.