Ignore:
Timestamp:
Oct 13, 2007 12:06:59 AM (17 years ago)
Author:
bennylp
Message:

Added "magic" parameter in pj_stun_session_create_req()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/src/pjstun-client/client_main.c

    r1495 r1498  
    376376 
    377377    rc = pj_stun_session_create_req(g.sess, PJ_STUN_BINDING_REQUEST,  
    378                                     NULL, &tdata); 
     378                                    PJ_STUN_MAGIC, NULL, &tdata); 
    379379    pj_assert(rc == PJ_SUCCESS); 
    380380 
     
    392392 
    393393    rc = pj_stun_session_create_req(g.sess, PJ_STUN_ALLOCATE_REQUEST,  
    394                                     NULL, &tdata); 
     394                                    PJ_STUN_MAGIC, NULL, &tdata); 
    395395    pj_assert(rc == PJ_SUCCESS); 
    396396 
     
    452452    rc = pj_stun_session_create_req(g.sess,  
    453453                                    PJ_STUN_SET_ACTIVE_DESTINATION_REQUEST,  
    454                                     NULL, &tdata); 
     454                                    PJ_STUN_MAGIC, NULL, &tdata); 
    455455    pj_assert(rc == PJ_SUCCESS); 
    456456 
Note: See TracChangeset for help on using the changeset viewer.