Ignore:
Timestamp:
Jan 2, 2008 8:24:10 AM (16 years ago)
Author:
bennylp
Message:

Ticket #437: reduce stack and pool usage on pjnath to make it work better on Symbian

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/include/pjnath/ice_session.h

    r1487 r1654  
    2626#include <pjnath/types.h> 
    2727#include <pjnath/stun_session.h> 
     28#include <pjnath/errno.h> 
    2829#include <pj/sock.h> 
    2930#include <pj/timer.h> 
     
    561562    /* Valid list */ 
    562563    pj_ice_sess_checklist valid_list;               /**< Valid list.        */ 
     564     
     565    /* Temporary buffer for misc stuffs to avoid using stack too much */ 
     566    union { 
     567        char txt[128]; 
     568        char errmsg[PJ_ERR_MSG_SIZE]; 
     569    } tmp; 
    563570}; 
    564571 
Note: See TracChangeset for help on using the changeset viewer.