Ignore:
Timestamp:
Jun 3, 2017 9:22:34 AM (7 years ago)
Author:
nanang
Message:

Re #2018: Initial version of DTLS-SRTP implementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/config.h

    r5418 r5597  
    954954 
    955955/** 
     956 * Enable session description for SRTP keying. 
     957 * 
     958 * By default it is enabled. 
     959 */ 
     960#ifndef PJMEDIA_SRTP_HAS_SDES 
     961#   define PJMEDIA_SRTP_HAS_SDES                    1 
     962#endif 
     963 
     964 
     965/** 
     966 * Enable DTLS for SRTP keying. 
     967 * 
     968 * Default value: 0 (disabled) 
     969 */ 
     970#ifndef PJMEDIA_SRTP_HAS_DTLS 
     971#   define PJMEDIA_SRTP_HAS_DTLS                    0 
     972#endif 
     973 
     974 
     975/** 
     976 * Set OpenSSL ciphers for DTLS-SRTP. 
     977 * 
     978 * Default value: "DEFAULT" 
     979 */ 
     980#ifndef PJMEDIA_SRTP_DTLS_OSSL_CIPHERS 
     981#   define PJMEDIA_SRTP_DTLS_OSSL_CIPHERS           "DEFAULT" 
     982#endif 
     983 
     984 
     985/** 
    956986 * Maximum number of SRTP cryptos. 
    957987 * 
Note: See TracChangeset for help on using the changeset viewer.