Changeset 5501
- Timestamp:
- Dec 19, 2016 3:01:55 AM (8 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/os_timestamp_posix.c
r5482 r5501 166 166 #include <linux/android_alarm.h> 167 167 #include <fcntl.h> 168 #include <time.h> 168 169 169 170 #define NSEC_PER_SEC 1000000000 -
pjproject/trunk/pjlib/src/pj/ssl_sock_ossl.c
r5483 r5501 407 407 } 408 408 #else 409 PJ_UNUSED_ARG(nid); 410 PJ_UNUSED_ARG(cname); 409 411 openssl_curves_num = 0; 410 412 #endif … … 1023 1025 return GET_SSL_STATUS(ssock); 1024 1026 } 1027 #else 1028 PJ_UNUSED_ARG(ssock); 1025 1029 #endif 1026 1030 … … 1045 1049 return GET_SSL_STATUS(ssock); 1046 1050 } 1051 #else 1052 PJ_UNUSED_ARG(ssock); 1047 1053 #endif 1048 1054 -
pjproject/trunk/pjsip/src/pjsua2/endpoint.cpp
r5441 r5501 1294 1294 prm.mediaIdx = media_idx; 1295 1295 prm.srtpUse = srtp_opt->use; 1296 for ( inti = 0; i < srtp_opt->crypto_count; i++) {1296 for (unsigned i = 0; i < srtp_opt->crypto_count; i++) { 1297 1297 SrtpCrypto crypto; 1298 1298 … … 1307 1307 srtp_opt->use = prm.srtpUse; 1308 1308 srtp_opt->crypto_count = prm.cryptos.size(); 1309 for ( inti = 0; i < srtp_opt->crypto_count; i++) {1309 for (unsigned i = 0; i < srtp_opt->crypto_count; i++) { 1310 1310 srtp_opt->crypto[i].key = str2Pj(prm.cryptos[i].key); 1311 1311 srtp_opt->crypto[i].name = str2Pj(prm.cryptos[i].name); 1312 1312 srtp_opt->crypto[i].flags = prm.cryptos[i].flags; 1313 } 1313 } 1314 1314 } 1315 1315
Note: See TracChangeset
for help on using the changeset viewer.