Ignore:
Timestamp:
May 31, 2019 6:13:09 AM (5 years ago)
Author:
nanang
Message:

Misc (re #2147): Fixed compile warnings due to unused var/function.

File:
1 edited

Legend:

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

    r6004 r6020  
    4141                                       pj_status_t status, 
    4242                                       pj_size_t *remainder); 
     43#if USE_TLS 
    4344static pj_bool_t turn_tls_on_data_read(pj_ssl_sock_t *ssock, 
    4445                                       void *data, 
     
    4647                                       pj_status_t status, 
    4748                                       pj_size_t *remainder); 
     49#endif 
    4850static pj_bool_t turn_udp_on_data_recvfrom(pj_activesock_t *asock, 
    4951                                           void *data, 
     
    264266                                                pool); 
    265267        }  
    266 #if USE_TLS      
     268#if USE_TLS 
    267269        else if (tp_type == PJ_TURN_TP_TLS) { 
    268270            pj_ssl_sock_t *ssock_serv = NULL; 
     
    509511} 
    510512 
     513#if USE_TLS 
    511514static pj_bool_t turn_tls_on_data_read(pj_ssl_sock_t *ssl_sock, 
    512515                                       void *data, 
     
    523526                             status); 
    524527} 
     528#endif 
    525529 
    526530static pj_bool_t turn_udp_on_data_recvfrom(pj_activesock_t *asock, 
Note: See TracChangeset for help on using the changeset viewer.