Ignore:
Timestamp:
May 24, 2019 3:32:17 AM (5 years ago)
Author:
riza
Message:

Close #1017: TURN TLS transport implementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/src/pjnath-test/server.h

    r5350 r6004  
    4747 
    4848    SERVER_IPV4                 = (1 << 12), 
    49     SERVER_IPV6                 = (1 << 13) 
     49    SERVER_IPV6                 = (1 << 13), 
     50 
     51    TURN_UDP                    = (1 << 16), 
     52    TURN_TCP                    = (1 << 17), 
     53    TURN_TLS                    = (1 << 18) 
    5054}; 
    5155 
     
    8387 
    8488    pj_activesock_t     *turn_sock; 
     89 
     90    pj_ssl_sock_t       *ssl_srv_sock; 
     91 
     92    pj_ssl_sock_t       *ssl_cl_sock; 
     93 
     94    pj_activesock_t     *cl_turn_sock; 
     95 
     96    pj_sockaddr          remote_addr; 
    8597    unsigned             turn_alloc_cnt; 
    8698    turn_allocation      turn_alloc[MAX_TURN_ALLOC]; 
Note: See TracChangeset for help on using the changeset viewer.