Skip to content
Snippets Groups Projects
Commit 377bc4a2 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

dring: remove deprecated API

Change-Id: Ieb61181e437278e1975fadfa9908c0bc413b1add
parent 204b3fbc
No related branches found
No related tags found
No related merge requests found
...@@ -928,26 +928,6 @@ ...@@ -928,26 +928,6 @@
</tp:docstring> </tp:docstring>
</signal> </signal>
<signal name="secureSdesOn" tp:name-for-bindings="secureSdesOn">
<tp:added version="0.9.7"/>
<tp:docstring>
<p>Signal sent on SDES session success. Media transmission is encripted
for this call only. It does not apply for a conference.</p>
<p>A conference can be considered to be secured if and only if each
participant is secured.</p>
</tp:docstring>
<arg type="s" name="callID"/>
</signal>
<signal name="secureSdesOff" tp:name-for-bindings="secureSdesOff">
<tp:added version="0.9.7"/>
<tp:docstring>
<p>Signal sent to notify that SDES session failed.</p>
<p>Media transmission is not encrypted.</p>
</tp:docstring>
<arg type="s" name="callID" />
</signal>
<signal name="recordingStateChanged" tp:name-for-bindings="recordingStateChange"> <signal name="recordingStateChanged" tp:name-for-bindings="recordingStateChange">
<tp:added version="1.3.0"/> <tp:added version="1.3.0"/>
<arg type="s" name="callID" /> <arg type="s" name="callID" />
......
...@@ -185,10 +185,6 @@ DBusClient::initLibrary(int flags) ...@@ -185,10 +185,6 @@ DBusClient::initLibrary(int flags)
bind(&DBusCallManager::conferenceRemoved, callM, _1)), bind(&DBusCallManager::conferenceRemoved, callM, _1)),
exportable_callback<CallSignal::RecordingStateChanged>( exportable_callback<CallSignal::RecordingStateChanged>(
bind(&DBusCallManager::recordingStateChanged, callM, _1, _2)), bind(&DBusCallManager::recordingStateChanged, callM, _1, _2)),
exportable_callback<CallSignal::SecureSdesOn>(
bind(&DBusCallManager::secureSdesOn, callM, _1)),
exportable_callback<CallSignal::SecureSdesOff>(
bind(&DBusCallManager::secureSdesOff, callM, _1)),
exportable_callback<CallSignal::RtcpReportReceived>( exportable_callback<CallSignal::RtcpReportReceived>(
bind(&DBusCallManager::onRtcpReportReceived, callM, _1, _2)), bind(&DBusCallManager::onRtcpReportReceived, callM, _1, _2)),
exportable_callback<CallSignal::OnConferenceInfosUpdated>( exportable_callback<CallSignal::OnConferenceInfosUpdated>(
......
...@@ -88,9 +88,6 @@ systems. This function is required for `alloca.c' support on those systems. ...@@ -88,9 +88,6 @@ systems. This function is required for `alloca.c' support on those systems.
/* Define if you have pulseaudio */ /* Define if you have pulseaudio */
#define HAVE_PULSE 0 #define HAVE_PULSE 0
/* Define if you have sdes support */
#define HAVE_SDES 1
/* Define if you have shared memory support */ /* Define if you have shared memory support */
#define HAVE_SHM 0 #define HAVE_SHM 0
......
...@@ -42,8 +42,6 @@ getSignalHandlers() ...@@ -42,8 +42,6 @@ getSignalHandlers()
exported_callback<DRing::CallSignal::UpdatePlaybackScale>(), exported_callback<DRing::CallSignal::UpdatePlaybackScale>(),
exported_callback<DRing::CallSignal::ConferenceRemoved>(), exported_callback<DRing::CallSignal::ConferenceRemoved>(),
exported_callback<DRing::CallSignal::RecordingStateChanged>(), exported_callback<DRing::CallSignal::RecordingStateChanged>(),
exported_callback<DRing::CallSignal::SecureSdesOn>(),
exported_callback<DRing::CallSignal::SecureSdesOff>(),
exported_callback<DRing::CallSignal::RtcpReportReceived>(), exported_callback<DRing::CallSignal::RtcpReportReceived>(),
exported_callback<DRing::CallSignal::PeerHold>(), exported_callback<DRing::CallSignal::PeerHold>(),
exported_callback<DRing::CallSignal::VideoMuted>(), exported_callback<DRing::CallSignal::VideoMuted>(),
......
...@@ -212,16 +212,6 @@ struct DRING_PUBLIC CallSignal ...@@ -212,16 +212,6 @@ struct DRING_PUBLIC CallSignal
constexpr static const char* name = "RecordingStateChanged"; constexpr static const char* name = "RecordingStateChanged";
using cb_type = void(const std::string&, int); using cb_type = void(const std::string&, int);
}; };
struct DRING_PUBLIC SecureSdesOn
{
constexpr static const char* name = "SecureSdesOn";
using cb_type = void(const std::string&);
};
struct DRING_PUBLIC SecureSdesOff
{
constexpr static const char* name = "SecureSdesOff";
using cb_type = void(const std::string&);
};
struct DRING_PUBLIC RtcpReportReceived struct DRING_PUBLIC RtcpReportReceived
{ {
constexpr static const char* name = "RtcpReportReceived"; constexpr static const char* name = "RtcpReportReceived";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment