Ignore:
Timestamp:
Mar 2, 2007 7:06:05 PM (17 years ago)
Author:
bennylp
Message:

Finishing up client-side STUN authentication, a simple STUN client, and simple STUN server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/include/pjlib-util/stun_endpoint.h

    r996 r1034  
    4646typedef struct pj_stun_endpoint 
    4747{ 
     48    /** 
     49     * Pool factory to be used by the STUN endpoint and all objects created 
     50     * that use this STUN endpoint. 
     51     */ 
    4852    pj_pool_factory     *pf; 
     53 
     54    /** 
     55     * Ioqueue used by this endpoint. 
     56     */ 
    4957    pj_ioqueue_t        *ioqueue; 
     58 
     59    /** 
     60     * Timer heap instance used by this endpoint. 
     61     */ 
    5062    pj_timer_heap_t     *timer_heap; 
     63 
     64    /** 
     65     * Internal pool used by this endpoint. This shouldn't be used by 
     66     * application. 
     67     */ 
     68    pj_pool_t           *pool; 
     69 
     70    /** 
     71     * Options. 
     72     */ 
    5173    unsigned             options; 
    5274 
     75    /** 
     76     * The default initial STUN round-trip time estimation in msecs. 
     77     * The value normally is PJ_STUN_RTO_VALUE. 
     78     */ 
    5379    unsigned             rto_msec; 
    5480 
    55     pj_pool_t           *pool; 
     81    /** 
     82     * The interval to cache outgoing  STUN response in the STUN session, 
     83     * in miliseconds.  
     84     * 
     85     * Default 10000 (10 seconds). 
     86     */ 
     87    unsigned             res_cache_msec; 
    5688 
    5789} pj_stun_endpoint; 
Note: See TracChangeset for help on using the changeset viewer.