Ignore:
Timestamp:
Feb 23, 2007 1:07:54 AM (17 years ago)
Author:
bennylp
Message:

Ticket #121 and #122: Initial implementation of generic STUN transaction, with Binding request as an example

File:
1 edited

Legend:

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

    r992 r996  
    2626 * Create a STUN endpoint instance. 
    2727 */ 
    28 PJ_DEF(pj_status_t) pj_stun_endpt_create( pj_pool_factory *factory, 
    29                                           unsigned options, 
    30                                           pj_ioqueue_t *ioqueue, 
    31                                           pj_timer_heap_t *timer_heap, 
    32                                           pj_stun_endpoint **p_endpt) 
     28PJ_DEF(pj_status_t) pj_stun_endpoint_create( pj_pool_factory *factory, 
     29                                             unsigned options, 
     30                                             pj_ioqueue_t *ioqueue, 
     31                                             pj_timer_heap_t *timer_heap, 
     32                                             pj_stun_endpoint **p_endpt) 
    3333{ 
    3434    pj_pool_t *pool; 
     
    5858 * Destroy STUN endpoint instance. 
    5959 */ 
    60 PJ_DEF(pj_status_t) pj_stun_endpt_destroy(pj_stun_endpoint *endpt) 
     60PJ_DEF(pj_status_t) pj_stun_endpoint_destroy(pj_stun_endpoint *endpt) 
    6161{ 
    6262    PJ_ASSERT_RETURN(endpt, PJ_EINVAL); 
Note: See TracChangeset for help on using the changeset viewer.