Remove unused code

pull/1753/head
winlin 5 years ago
parent 38d6d5b077
commit 1b08fb6b6e

@ -63,7 +63,6 @@ using namespace std;
#include <srs_app_statistic.hpp> #include <srs_app_statistic.hpp>
#include <srs_app_pithy_print.hpp> #include <srs_app_pithy_print.hpp>
#include <srs_service_st.hpp> #include <srs_service_st.hpp>
#include <srs_app_janus.hpp>
// The RTP payload max size, reserved some paddings for SRTP as such: // The RTP payload max size, reserved some paddings for SRTP as such:
// kRtpPacketSize = kRtpMaxPayloadSize + paddings // kRtpPacketSize = kRtpMaxPayloadSize + paddings
@ -3243,12 +3242,10 @@ srs_error_t SrsUdpMuxSender::on_reload_rtc_server()
SrsRtcServer::SrsRtcServer() SrsRtcServer::SrsRtcServer()
{ {
timer = new SrsHourGlass(this, 1 * SRS_UTIME_SECONDS); timer = new SrsHourGlass(this, 1 * SRS_UTIME_SECONDS);
janus = new SrsJanusServer(this);
} }
SrsRtcServer::~SrsRtcServer() SrsRtcServer::~SrsRtcServer()
{ {
srs_freep(janus);
srs_freep(timer); srs_freep(timer);
if (true) { if (true) {
@ -3395,11 +3392,6 @@ srs_error_t SrsRtcServer::listen_api()
return srs_error_wrap(err, "handle nack"); return srs_error_wrap(err, "handle nack");
} }
// For Janus style API.
if ((err = janus->listen_api()) != srs_success) {
return srs_error_wrap(err, "janus listen api");
}
return err; return err;
} }

@ -44,9 +44,6 @@
#include <openssl/ssl.h> #include <openssl/ssl.h>
#include <srtp2/srtp.h> #include <srtp2/srtp.h>
// For Alibaba Tenfold.
class SrsJanusServer;
class SrsUdpMuxSocket; class SrsUdpMuxSocket;
class SrsConsumer; class SrsConsumer;
class SrsStunPacket; class SrsStunPacket;
@ -457,8 +454,6 @@ private:
private: private:
std::map<std::string, SrsRtcSession*> map_username_session; // key: username(local_ufrag + ":" + remote_ufrag) std::map<std::string, SrsRtcSession*> map_username_session; // key: username(local_ufrag + ":" + remote_ufrag)
std::map<std::string, SrsRtcSession*> map_id_session; // key: peerip(ip + ":" + port) std::map<std::string, SrsRtcSession*> map_id_session; // key: peerip(ip + ":" + port)
private:
SrsJanusServer* janus;
public: public:
SrsRtcServer(); SrsRtcServer();
virtual ~SrsRtcServer(); virtual ~SrsRtcServer();

Loading…
Cancel
Save