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/include/pjlib-util/stun_endpoint.h

    r992 r996  
    6262 * Create a STUN endpoint instance. 
    6363 */ 
    64 PJ_DECL(pj_status_t) pj_stun_endpt_create(pj_pool_factory *factory, 
    65                                           unsigned options, 
    66                                           pj_ioqueue_t *ioqueue, 
    67                                           pj_timer_heap_t *timer_heap, 
    68                                           pj_stun_endpoint **p_endpt); 
     64PJ_DECL(pj_status_t) pj_stun_endpoint_create(pj_pool_factory *factory, 
     65                                             unsigned options, 
     66                                             pj_ioqueue_t *ioqueue, 
     67                                             pj_timer_heap_t *timer_heap, 
     68                                             pj_stun_endpoint **p_endpt); 
    6969 
    7070/** 
    7171 * Destroy STUN endpoint instance. 
    7272 */ 
    73 PJ_DECL(pj_status_t) pj_stun_endpt_destroy(pj_stun_endpoint *endpt); 
     73PJ_DECL(pj_status_t) pj_stun_endpoint_destroy(pj_stun_endpoint *endpt); 
    7474 
    7575 
Note: See TracChangeset for help on using the changeset viewer.