Add option for strict SSL mode in backend settings

This commit is contained in:
Jonas Kvinge
2023-03-19 23:02:17 +01:00
parent b16bec704a
commit a1adc1a75a
7 changed files with 24 additions and 3 deletions

View File

@@ -74,6 +74,7 @@ class GstEnginePipeline : public QObject {
void set_proxy_settings(const QString &address, const bool authentication, const QString &user, const QString &pass);
void set_channels(const bool enabled, const int channels);
void set_bs2b_enabled(const bool enabled);
void set_strict_ssl_enabled(const bool enabled);
void set_fading_enabled(const bool enabled);
// Creates the pipeline, returns false on error
@@ -229,6 +230,7 @@ class GstEnginePipeline : public QObject {
// Options
bool bs2b_enabled_;
bool strict_ssl_enabled_;
// These get called when there is a new audio buffer available
QList<GstBufferConsumer*> buffer_consumers_;