Changeset 5602 for pjproject


Ignore:
Timestamp:
Jun 8, 2017 6:12:45 AM (7 years ago)
Author:
ming
Message:

Re #2018: fixed build failure due to undefined function "get_libsrtp_errstr" in transport_srtp_sdes.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/transport_srtp.c

    r5597 r5602  
    334334static pj_status_t start_srtp(transport_srtp *srtp); 
    335335 
    336 /* SRTP keying method: Session Description */ 
    337 #if defined(PJMEDIA_SRTP_HAS_SDES) && (PJMEDIA_SRTP_HAS_SDES != 0) 
    338 #  include "transport_srtp_sdes.c" 
    339 #endif 
    340  
    341 /* SRTP keying method: DTLS */ 
    342 #if defined(PJMEDIA_SRTP_HAS_DTLS) && (PJMEDIA_SRTP_HAS_DTLS != 0) 
    343 #  include "transport_srtp_dtls.c" 
    344 #endif 
    345  
    346336 
    347337/* This function may also be used by other module, e.g: pjmedia/errno.c, 
     
    399389} 
    400390 
     391/* SRTP keying method: Session Description */ 
     392#if defined(PJMEDIA_SRTP_HAS_SDES) && (PJMEDIA_SRTP_HAS_SDES != 0) 
     393#  include "transport_srtp_sdes.c" 
     394#endif 
     395 
     396/* SRTP keying method: DTLS */ 
     397#if defined(PJMEDIA_SRTP_HAS_DTLS) && (PJMEDIA_SRTP_HAS_DTLS != 0) 
     398#  include "transport_srtp_dtls.c" 
     399#endif 
     400 
     401 
    401402static pj_bool_t libsrtp_initialized; 
    402403static void pjmedia_srtp_deinit_lib(pjmedia_endpt *endpt); 
Note: See TracChangeset for help on using the changeset viewer.