Changeset 6010
- Timestamp:
- May 28, 2019 4:11:37 AM (4 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath/turn_sock.c
r6004 r6010 717 717 } 718 718 719 #if PJ_HAS_SSL_SOCK 719 720 static pj_bool_t on_connect_complete_ssl_sock(pj_ssl_sock_t *ssl_sock, 720 721 pj_status_t status) … … 728 729 return on_connect_complete(turn_sock, status); 729 730 } 731 #endif 730 732 731 733 static pj_uint16_t GETVAL16H(const pj_uint8_t *buf, unsigned pos) … … 857 859 } 858 860 861 #if PJ_HAS_SSL_SOCK 859 862 static pj_bool_t on_data_read_ssl_sock(pj_ssl_sock_t *ssl_sock, 860 863 void *data, … … 894 897 return PJ_TRUE; 895 898 } 899 #endif 896 900 897 901 /* -
pjproject/trunk/third_party/srtp/crypto/hash/hmac_ossl.c
r5726 r6010 55 55 56 56 #define SHA1_DIGEST_SIZE 20 57 #define USING_LIBRESSL (defined(LIBRESSL_VERSION_NUMBER)) 57 58 #if defined(LIBRESSL_VERSION_NUMBER) 59 # define USING_LIBRESSL 1 60 #else 61 # define USING_LIBRESSL 0 62 #endif 58 63 59 64 /* the debug module for authentiation */
Note: See TracChangeset
for help on using the changeset viewer.