Index: webrtc/base/opensslstreamadapter.h |
diff --git a/webrtc/base/opensslstreamadapter.h b/webrtc/base/opensslstreamadapter.h |
index 0f3ded9cb498c0919328115d665b97a3937996f9..e57b2a3293d5942ae15226a778ed39907f965db8 100644 |
--- a/webrtc/base/opensslstreamadapter.h |
+++ b/webrtc/base/opensslstreamadapter.h |
@@ -88,7 +88,7 @@ class OpenSSLStreamAdapter : public SSLStreamAdapter { |
StreamState GetState() const override; |
// TODO(guoweis): Move this away from a static class method. |
- static std::string GetSslCipherSuiteName(int cipher); |
+ static std::string SslCipherSuiteToName(int crypto_suite); |
bool GetSslCipherSuite(int* cipher) override; |
@@ -101,8 +101,8 @@ class OpenSSLStreamAdapter : public SSLStreamAdapter { |
size_t result_len) override; |
// DTLS-SRTP interface |
- bool SetDtlsSrtpCiphers(const std::vector<std::string>& ciphers) override; |
- bool GetDtlsSrtpCipher(std::string* cipher) override; |
+ bool SetDtlsSrtpCryptoSuites(const std::vector<int>& crypto_suites) override; |
+ bool GetDtlsSrtpCryptoSuite(int* crypto_suite) override; |
// Capabilities interfaces |
static bool HaveDtls(); |