| Index: talk/session/media/mediasession.h
|
| diff --git a/talk/session/media/mediasession.h b/talk/session/media/mediasession.h
|
| index 15402746650d4f5205d5b17d75b738f077dd8e65..5a749ae06d294f90b92e06fbb23b2a6b15b936be 100644
|
| --- a/talk/session/media/mediasession.h
|
| +++ b/talk/session/media/mediasession.h
|
| @@ -148,6 +148,7 @@ struct MediaSessionOptions {
|
| // bps. -1 == auto.
|
| int video_bandwidth;
|
| int data_bandwidth;
|
| + rtc::CryptoOptions crypto_options;
|
| TransportOptions audio_transport_options;
|
| TransportOptions video_transport_options;
|
| TransportOptions data_transport_options;
|
| @@ -549,17 +550,21 @@ const VideoContentDescription* GetFirstVideoContentDescription(
|
| const DataContentDescription* GetFirstDataContentDescription(
|
| const SessionDescription* sdesc);
|
|
|
| -void GetSupportedAudioCryptoSuites(std::vector<int>* crypto_suites);
|
| -void GetSupportedVideoCryptoSuites(std::vector<int>* crypto_suites);
|
| -void GetSupportedDataCryptoSuites(std::vector<int>* crypto_suites);
|
| -void GetDefaultSrtpCryptoSuites(std::vector<int>* crypto_suites);
|
| -void GetSupportedAudioCryptoSuiteNames(
|
| +void GetSupportedAudioCryptoSuites(const rtc::CryptoOptions& crypto_options,
|
| + std::vector<int>* crypto_suites);
|
| +void GetSupportedVideoCryptoSuites(const rtc::CryptoOptions& crypto_options,
|
| + std::vector<int>* crypto_suites);
|
| +void GetSupportedDataCryptoSuites(const rtc::CryptoOptions& crypto_options,
|
| + std::vector<int>* crypto_suites);
|
| +void GetDefaultSrtpCryptoSuites(const rtc::CryptoOptions& crypto_options,
|
| + std::vector<int>* crypto_suites);
|
| +void GetSupportedAudioCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
|
| std::vector<std::string>* crypto_suite_names);
|
| -void GetSupportedVideoCryptoSuiteNames(
|
| +void GetSupportedVideoCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
|
| std::vector<std::string>* crypto_suite_names);
|
| -void GetSupportedDataCryptoSuiteNames(
|
| +void GetSupportedDataCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
|
| std::vector<std::string>* crypto_suite_names);
|
| -void GetDefaultSrtpCryptoSuiteNames(
|
| +void GetDefaultSrtpCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
|
| std::vector<std::string>* crypto_suite_names);
|
|
|
| } // namespace cricket
|
|
|