Ignore:
Timestamp:
Mar 5, 2007 12:58:24 AM (17 years ago)
Author:
bennylp
Message:

Implemented new STUN server framework

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/src/pjlib-util/stun_session.c

    r1039 r1040  
    125125    PJ_ASSERT_RETURN(pool, PJ_ENOMEM); 
    126126 
    127     tdata = PJ_POOL_ZALLOC_TYPE(pool, pj_stun_tx_data); 
     127    tdata = PJ_POOL_ZALLOC_T(pool, pj_stun_tx_data); 
    128128    tdata->pool = pool; 
    129129    tdata->sess = sess; 
     
    321321    PJ_ASSERT_RETURN(pool, PJ_ENOMEM); 
    322322 
    323     sess = PJ_POOL_ZALLOC_TYPE(pool, pj_stun_session); 
     323    sess = PJ_POOL_ZALLOC_T(pool, pj_stun_session); 
    324324    sess->endpt = endpt; 
    325325    sess->pool = pool; 
Note: See TracChangeset for help on using the changeset viewer.