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_sock.c

    r3028 r3197  
    143143 
    144144    /* Create and init basic data structure */ 
    145     pool = pj_pool_create(cfg->pf, name_tmpl, 1000, 1000, NULL); 
     145    pool = pj_pool_create(cfg->pf, name_tmpl, PJNATH_POOL_LEN_TURN_SOCK, 
     146                          PJNATH_POOL_INC_TURN_SOCK, NULL); 
    146147    turn_sock = PJ_POOL_ZALLOC_T(pool, pj_turn_sock); 
    147148    turn_sock->pool = pool; 
Note: See TracChangeset for help on using the changeset viewer.