Changeset 5969 for pjproject/trunk/pjsip/include/pjsua2/endpoint.hpp
- Timestamp:
- Apr 15, 2019 10:52:16 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/endpoint.hpp
r5964 r5969 133 133 }; 134 134 135 /** Array of SSL certificate type and name. */ 136 typedef std::vector<SslCertName> SslCertNameVector; 137 135 138 /** 136 139 * SSL certificate information. … … 156 159 date/time use GMT */ 157 160 158 vector<SslCertName>subjectAltName; /**< Subject alternative161 SslCertNameVector subjectAltName; /**< Subject alternative 159 162 name extension */ 160 163 … … 1379 1382 1380 1383 /** 1384 * Warning: deprecated, use mediaEnumPorts2() instead. This function is 1385 * not safe in multithreaded environment. 1386 * 1381 1387 * Enumerate all media port. 1382 1388 * … … 1384 1390 */ 1385 1391 const AudioMediaVector &mediaEnumPorts() const throw(Error); 1392 1393 /** 1394 * Enumerate all audio media port. 1395 * 1396 * @return The list of audio media port. 1397 */ 1398 AudioMediaVector2 mediaEnumPorts2() const throw(Error); 1386 1399 1387 1400 /** … … 1404 1417 1405 1418 /** 1419 * Warning: deprecated, use codecEnum2() instead. This function is not 1420 * safe in multithreaded environment. 1421 * 1406 1422 * Enum all supported codecs in the system. 1407 1423 * … … 1409 1425 */ 1410 1426 const CodecInfoVector &codecEnum() throw(Error); 1427 1428 /** 1429 * Enum all supported codecs in the system. 1430 * 1431 * @return Array of codec info. 1432 */ 1433 CodecInfoVector2 codecEnum2() const throw(Error); 1411 1434 1412 1435 /** … … 1445 1468 1446 1469 /** 1470 * Warning: deprecated, use videoCodecEnum2() instead. This function is 1471 * not safe in multithreaded environment. 1472 * 1447 1473 * Enum all supported video codecs in the system. 1448 1474 * … … 1450 1476 */ 1451 1477 const CodecInfoVector &videoCodecEnum() throw(Error); 1478 1479 /** 1480 * Enum all supported video codecs in the system. 1481 * 1482 * @return Array of video codec info. 1483 */ 1484 CodecInfoVector2 videoCodecEnum2() const throw(Error); 1452 1485 1453 1486 /**
Note: See TracChangeset
for help on using the changeset viewer.