mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 23:25:33 +00:00
Added certificateType option to C API
This commit is contained in:
@ -64,7 +64,11 @@ struct RTC_CPP_EXPORT ProxyServer {
|
||||
string password;
|
||||
};
|
||||
|
||||
enum class CertificateType { Ecdsa = 0, Rsa };
|
||||
enum class CertificateType {
|
||||
Default = RTC_CERTIFICATE_DEFAULT, // ECDSA
|
||||
Ecdsa = RTC_CERTIFICATE_ECDSA,
|
||||
Rsa = RTC_CERTIFICATE_RSA
|
||||
};
|
||||
|
||||
struct RTC_CPP_EXPORT Configuration {
|
||||
// ICE settings
|
||||
|
Reference in New Issue
Block a user