Ignore:
Timestamp:
Jun 3, 2010 4:18:11 PM (14 years ago)
Author:
bennylp
Message:

Make TURN pool memory sizes compile-time configurable (misc, re: #1068)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/src/pjnath/turn_session.c

    r3028 r3197  
    257257 
    258258    /* Allocate and create TURN session */ 
    259     pool = pj_pool_create(cfg->pf, name, 1000, 1000, NULL); 
     259    pool = pj_pool_create(cfg->pf, name, PJNATH_POOL_LEN_TURN_SESS, 
     260                          PJNATH_POOL_INC_TURN_SESS, NULL); 
    260261    sess = PJ_POOL_ZALLOC_T(pool, pj_turn_session); 
    261262    sess->pool = pool; 
Note: See TracChangeset for help on using the changeset viewer.