1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-24 06:54:22 +00:00
srs/trunk/src/app/srs_app_rtc_conn.hpp

505 lines
16 KiB
C++
Raw Normal View History

2020-02-28 15:18:39 +00:00
/**
* The MIT License (MIT)
*
2020-03-31 10:03:04 +00:00
* Copyright (c) 2013-2020 John
2020-02-28 15:18:39 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef SRS_APP_RTC_CONN_HPP
#define SRS_APP_RTC_CONN_HPP
#include <srs_core.hpp>
2020-03-07 16:30:31 +00:00
#include <srs_app_listener.hpp>
2020-03-06 15:01:48 +00:00
#include <srs_service_st.hpp>
#include <srs_kernel_utility.hpp>
#include <srs_rtmp_stack.hpp>
#include <srs_app_hybrid.hpp>
#include <srs_app_hourglass.hpp>
2020-03-30 07:16:29 +00:00
#include <srs_app_sdp.hpp>
#include <srs_app_reload.hpp>
#include <srs_kernel_rtp.hpp>
#include <srs_app_rtp_queue.hpp>
2020-02-28 15:18:39 +00:00
#include <string>
#include <map>
2020-03-02 14:47:40 +00:00
#include <vector>
2020-04-05 08:53:08 +00:00
#include <sys/socket.h>
2020-02-28 15:18:39 +00:00
2020-03-06 15:01:48 +00:00
#include <openssl/ssl.h>
#include <srtp2/srtp.h>
class SrsUdpMuxSocket;
class SrsConsumer;
2020-02-28 15:18:39 +00:00
class SrsStunPacket;
class SrsRtcServer;
class SrsRtcSession;
class SrsSharedPtrMessage;
class SrsSource;
class SrsRtpPacket2;
2020-04-16 11:33:10 +00:00
class ISrsUdpSender;
2020-04-23 09:08:21 +00:00
class SrsRtpQueue;
2020-05-03 02:15:54 +00:00
class SrsRtpAudioQueue;
class SrsRtpVideoQueue;
class SrsRtpPacket2;
class ISrsCodec;
2020-05-02 02:07:55 +00:00
class SrsRtpNackForReceiver;
class SrsRtpIncommingVideoFrame;
const uint8_t kSR = 200;
const uint8_t kRR = 201;
const uint8_t kSDES = 202;
const uint8_t kBye = 203;
const uint8_t kApp = 204;
// @see: https://tools.ietf.org/html/rfc4585#section-6.1
const uint8_t kRtpFb = 205;
const uint8_t kPsFb = 206;
2020-04-23 09:08:21 +00:00
const uint8_t kXR = 207;
// @see: https://tools.ietf.org/html/rfc4585#section-6.3
const uint8_t kPLI = 1;
const uint8_t kSLI = 2;
const uint8_t kRPSI = 3;
const uint8_t kAFB = 15;
2020-05-05 23:37:00 +00:00
extern std::string gen_random_str(int len);
2020-04-23 09:08:21 +00:00
class SrsNtp
{
public:
uint64_t system_ms_;
uint64_t ntp_;
uint32_t ntp_second_;
uint32_t ntp_fractions_;
public:
SrsNtp();
virtual ~SrsNtp();
public:
static SrsNtp from_time_ms(uint64_t ms);
static SrsNtp to_time_ms(uint64_t ntp);
public:
static uint64_t kMagicNtpFractionalUnit;
};
2020-02-28 15:18:39 +00:00
enum SrsRtcSessionStateType
{
// TODO: FIXME: Should prefixed by enum name.
2020-02-28 15:18:39 +00:00
INIT = -1,
2020-05-05 23:37:00 +00:00
WAITING_ANSWER = 1,
WAITING_STUN = 2,
DOING_DTLS_HANDSHAKE = 3,
ESTABLISHED = 4,
CLOSED = 5,
2020-02-28 15:18:39 +00:00
};
2020-05-03 05:49:53 +00:00
class SrsRtcDtls
2020-02-28 15:18:39 +00:00
{
2020-03-06 15:01:48 +00:00
private:
2020-05-03 05:49:53 +00:00
SrsRtcSession* session_;
2020-04-09 00:20:55 +00:00
SSL* dtls;
2020-03-06 15:01:48 +00:00
BIO* bio_in;
BIO* bio_out;
std::string client_key;
std::string server_key;
srtp_t srtp_send;
srtp_t srtp_recv;
bool handshake_done;
2020-02-28 15:18:39 +00:00
public:
2020-05-03 05:49:53 +00:00
SrsRtcDtls(SrsRtcSession* s);
virtual ~SrsRtcDtls();
2020-03-06 15:01:48 +00:00
2020-04-26 08:12:23 +00:00
srs_error_t initialize(SrsRequest* r);
2020-03-30 07:16:29 +00:00
2020-04-30 06:49:37 +00:00
srs_error_t on_dtls(char* data, int nb_data);
srs_error_t on_dtls_handshake_done();
2020-03-06 15:01:48 +00:00
srs_error_t on_dtls_application_data(const char* data, const int len);
public:
srs_error_t protect_rtp(char* protected_buf, const char* ori_buf, int& nb_protected_buf);
2020-04-13 07:24:41 +00:00
srs_error_t protect_rtp2(void* rtp_hdr, int* len_ptr);
srs_error_t unprotect_rtp(char* unprotected_buf, const char* ori_buf, int& nb_unprotected_buf);
srs_error_t protect_rtcp(char* protected_buf, const char* ori_buf, int& nb_protected_buf);
srs_error_t unprotect_rtcp(char* unprotected_buf, const char* ori_buf, int& nb_unprotected_buf);
private:
2020-04-30 06:49:37 +00:00
srs_error_t handshake();
2020-03-07 16:30:31 +00:00
private:
srs_error_t srtp_initialize();
srs_error_t srtp_send_init();
srs_error_t srtp_recv_init();
2020-03-06 15:01:48 +00:00
};
2020-05-03 05:49:53 +00:00
// A group of RTP packets for outgoing(send to players).
class SrsRtcOutgoingPackets
2020-04-13 08:50:24 +00:00
{
public:
2020-04-13 15:40:30 +00:00
bool use_gso;
2020-04-13 08:50:24 +00:00
bool should_merge_nalus;
public:
2020-04-16 01:25:18 +00:00
#if defined(SRS_DEBUG)
// Debug id.
uint32_t debug_id;
#endif
2020-04-16 02:05:17 +00:00
public:
2020-04-17 08:36:56 +00:00
// The total bytes of AVFrame packets.
2020-04-13 08:50:24 +00:00
int nn_bytes;
2020-04-17 08:36:56 +00:00
// The total bytes of RTP packets.
int nn_rtp_bytes;
2020-04-16 02:05:17 +00:00
// The total padded bytes.
int nn_padding_bytes;
public:
2020-04-14 12:12:14 +00:00
// The RTP packets send out by sendmmsg or sendmsg. Note that if many packets group to
// one msghdr by GSO, it's only one RTP packet, because we only send once.
2020-04-13 08:50:24 +00:00
int nn_rtp_pkts;
2020-04-14 12:12:14 +00:00
// For video, the samples or NALUs.
2020-04-13 08:50:24 +00:00
int nn_samples;
2020-04-14 12:12:14 +00:00
// For audio, the generated extra audio packets.
// For example, when transcoding AAC to opus, may many extra payloads for a audio.
2020-04-13 09:11:46 +00:00
int nn_extras;
2020-04-14 12:12:14 +00:00
// The original audio messages.
2020-04-13 08:50:24 +00:00
int nn_audios;
2020-04-14 12:12:14 +00:00
// The original video messages.
2020-04-13 08:50:24 +00:00
int nn_videos;
2020-04-15 07:58:17 +00:00
// The number of padded packet.
int nn_paddings;
2020-04-17 04:30:53 +00:00
// The number of dropped messages.
int nn_dropped;
2020-04-15 14:46:06 +00:00
private:
int cursor;
2020-04-18 12:37:08 +00:00
int nn_cache;
SrsRtpPacket2* cache;
2020-04-13 08:50:24 +00:00
public:
2020-05-03 05:49:53 +00:00
SrsRtcOutgoingPackets(int nn_cache_max);
virtual ~SrsRtcOutgoingPackets();
2020-04-15 13:59:27 +00:00
public:
void reset(bool gso, bool merge_nalus);
2020-04-15 14:46:06 +00:00
SrsRtpPacket2* fetch();
SrsRtpPacket2* back();
int size();
2020-04-16 04:35:36 +00:00
int capacity();
2020-04-15 14:46:06 +00:00
SrsRtpPacket2* at(int index);
2020-04-13 08:50:24 +00:00
};
class SrsRtcPlayer : virtual public ISrsCoroutineHandler, virtual public ISrsReloadHandler
{
protected:
int _parent_cid;
2020-05-04 06:47:58 +00:00
SrsCoroutine* trd;
2020-05-03 05:49:53 +00:00
SrsRtcSession* session_;
2020-04-11 09:52:14 +00:00
private:
// TODO: FIXME: How to handle timestamp overflow?
2020-05-04 06:47:58 +00:00
// Information for audio.
2020-04-11 10:39:46 +00:00
uint32_t audio_timestamp;
uint16_t audio_sequence;
2020-05-04 06:47:58 +00:00
uint32_t audio_ssrc;
uint16_t audio_payload_type;
// Information for video.
uint16_t video_sequence;
2020-05-04 06:47:58 +00:00
uint16_t video_payload_type;
uint32_t video_ssrc;
// NACK ARQ ring buffer.
SrsRtpRingBuffer<SrsRtpPacket2*>* audio_queue_;
SrsRtpRingBuffer<SrsRtpPacket2*>* video_queue_;
2020-05-04 06:47:58 +00:00
// Simulators.
int nn_simulate_nack_drop;
2020-04-17 06:24:24 +00:00
private:
2020-05-04 06:47:58 +00:00
// For merged-write and GSO.
2020-04-13 08:50:24 +00:00
bool merge_nalus;
bool gso;
2020-04-15 07:58:17 +00:00
int max_padding;
2020-05-04 06:47:58 +00:00
// For merged-write messages.
srs_utime_t mw_sleep;
int mw_msgs;
bool realtime;
2020-05-04 12:42:30 +00:00
// Whether enabled nack.
bool nack_enabled_;
public:
SrsRtcPlayer(SrsRtcSession* s, int parent_cid);
virtual ~SrsRtcPlayer();
2020-03-30 07:16:29 +00:00
public:
srs_error_t initialize(const uint32_t& vssrc, const uint32_t& assrc, const uint16_t& v_pt, const uint16_t& a_pt);
2020-04-13 08:50:24 +00:00
// interface ISrsReloadHandler
public:
virtual srs_error_t on_reload_rtc_server();
virtual srs_error_t on_reload_vhost_play(std::string vhost);
virtual srs_error_t on_reload_vhost_realtime(std::string vhost);
public:
virtual int cid();
public:
virtual srs_error_t start();
virtual void stop();
virtual void stop_loop();
2020-04-13 05:58:34 +00:00
public:
virtual srs_error_t cycle();
private:
2020-05-03 05:49:53 +00:00
srs_error_t send_messages(SrsSource* source, SrsSharedPtrMessage** msgs, int nb_msgs, SrsRtcOutgoingPackets& packets);
srs_error_t messages_to_packets(SrsSource* source, SrsSharedPtrMessage** msgs, int nb_msgs, SrsRtcOutgoingPackets& packets);
srs_error_t send_packets(SrsRtcOutgoingPackets& packets);
srs_error_t send_packets_gso(SrsRtcOutgoingPackets& packets);
2020-04-11 09:52:14 +00:00
private:
2020-05-03 05:49:53 +00:00
srs_error_t package_opus(SrsSample* sample, SrsRtcOutgoingPackets& packets, int nn_max_payload);
private:
2020-05-03 05:49:53 +00:00
srs_error_t package_fu_a(SrsSharedPtrMessage* msg, SrsSample* sample, int fu_payload_size, SrsRtcOutgoingPackets& packets);
srs_error_t package_nalus(SrsSharedPtrMessage* msg, SrsRtcOutgoingPackets& packets);
srs_error_t package_single_nalu(SrsSharedPtrMessage* msg, SrsSample* sample, SrsRtcOutgoingPackets& packets);
srs_error_t package_stap_a(SrsSource* source, SrsSharedPtrMessage* msg, SrsRtcOutgoingPackets& packets);
2020-05-04 06:47:58 +00:00
public:
void nack_fetch(std::vector<SrsRtpPacket2*>& pkts, uint32_t ssrc, uint16_t seq);
void simulate_nack_drop(int nn);
2020-05-04 12:42:30 +00:00
private:
void simulate_drop_packet(SrsRtpHeader* h, int nn_bytes);
};
2020-03-07 16:30:31 +00:00
class SrsRtcPublisher : virtual public ISrsHourGlass, virtual public ISrsRtpPacketDecodeHandler
2020-04-23 09:08:21 +00:00
{
2020-04-23 15:14:30 +00:00
private:
SrsHourGlass* report_timer;
2020-04-23 09:08:21 +00:00
private:
2020-05-03 05:49:53 +00:00
SrsRtcSession* session_;
2020-04-23 09:08:21 +00:00
uint32_t video_ssrc;
uint32_t audio_ssrc;
private:
2020-05-03 02:15:54 +00:00
SrsRtpVideoQueue* video_queue_;
2020-05-02 02:07:55 +00:00
SrsRtpNackForReceiver* video_nack_;
2020-05-03 02:15:54 +00:00
SrsRtpAudioQueue* audio_queue_;
2020-05-02 02:07:55 +00:00
SrsRtpNackForReceiver* audio_nack_;
2020-04-23 09:08:21 +00:00
private:
2020-04-26 08:12:23 +00:00
SrsRequest* req;
2020-04-23 09:08:21 +00:00
SrsSource* source;
2020-05-04 12:42:30 +00:00
// Whether enabled nack.
bool nack_enabled_;
// Simulators.
int nn_simulate_nack_drop;
2020-04-23 15:14:30 +00:00
private:
std::map<uint32_t, uint64_t> last_sender_report_sys_time;
std::map<uint32_t, SrsNtp> last_sender_report_ntp;
2020-04-23 09:08:21 +00:00
public:
SrsRtcPublisher(SrsRtcSession* session);
virtual ~SrsRtcPublisher();
public:
2020-04-30 06:49:37 +00:00
srs_error_t initialize(uint32_t vssrc, uint32_t assrc, SrsRequest* req);
srs_error_t on_rtcp_sender_report(char* buf, int nb_buf);
srs_error_t on_rtcp_xr(char* buf, int nb_buf);
2020-04-23 15:14:30 +00:00
private:
2020-05-02 02:07:55 +00:00
void check_send_nacks(SrsRtpNackForReceiver* nack, uint32_t ssrc);
2020-04-30 06:49:37 +00:00
srs_error_t send_rtcp_rr(uint32_t ssrc, SrsRtpQueue* rtp_queue);
srs_error_t send_rtcp_xr_rrtr(uint32_t ssrc);
srs_error_t send_rtcp_fb_pli(uint32_t ssrc);
2020-04-30 02:00:07 +00:00
public:
2020-04-30 06:49:37 +00:00
srs_error_t on_rtp(char* buf, int nb_buf);
virtual void on_before_decode_payload(SrsRtpPacket2* pkt, SrsBuffer* buf, ISrsCodec** ppayload);
2020-04-23 09:08:21 +00:00
private:
srs_error_t on_audio(SrsRtpPacket2* pkt);
srs_error_t on_audio_frame(SrsRtpPacket2* frame);
srs_error_t on_video(SrsRtpPacket2* pkt);
srs_error_t on_video_frame(SrsRtpPacket2* frame);
2020-04-23 15:14:30 +00:00
public:
void request_keyframe();
2020-04-23 15:14:30 +00:00
// interface ISrsHourGlass
public:
virtual srs_error_t notify(int type, srs_utime_t interval, srs_utime_t tick);
2020-05-04 06:47:58 +00:00
public:
void simulate_nack_drop(int nn);
2020-05-04 12:42:30 +00:00
private:
void simulate_drop_packet(SrsRtpHeader* h, int nn_bytes);
2020-04-23 09:08:21 +00:00
};
2020-03-06 15:01:48 +00:00
class SrsRtcSession
{
2020-05-03 05:49:53 +00:00
friend class SrsRtcDtls;
friend class SrsRtcPlayer;
2020-04-23 09:08:21 +00:00
friend class SrsRtcPublisher;
2020-02-28 15:18:39 +00:00
private:
2020-05-03 05:49:53 +00:00
SrsRtcServer* server_;
2020-05-05 23:37:00 +00:00
SrsRtcSessionStateType state_;
2020-05-03 05:49:53 +00:00
SrsRtcDtls* dtls_;
SrsRtcPlayer* player_;
SrsRtcPublisher* publisher_;
bool is_publisher_;
2020-04-30 06:49:37 +00:00
private:
SrsUdpMuxSocket* sendonly_skt;
2020-05-04 06:47:58 +00:00
std::string username_;
std::string peer_id_;
2020-04-30 06:49:37 +00:00
private:
// The timeout of session, keep alive by STUN ping pong.
srs_utime_t sessionStunTimeout;
srs_utime_t last_stun_time;
private:
// For each RTC session, we use a specified cid for debugging logs.
int cid;
// For each RTC session, whether requires encrypt.
// Read config value, rtc_server.encrypt, default to on.
// Sepcifies by HTTP API, query encrypt, optional.
// TODO: FIXME: Support reload.
bool encrypt;
2020-04-30 06:49:37 +00:00
SrsRequest* req;
SrsSource* source_;
2020-04-30 06:49:37 +00:00
SrsSdp remote_sdp;
SrsSdp local_sdp;
2020-04-27 01:35:50 +00:00
private:
bool blackhole;
sockaddr_in* blackhole_addr;
srs_netfd_t blackhole_stfd;
public:
2020-05-03 01:55:43 +00:00
SrsRtcSession(SrsRtcServer* s);
2020-02-28 15:18:39 +00:00
virtual ~SrsRtcSession();
2020-03-07 16:30:31 +00:00
public:
SrsSdp* get_local_sdp();
2020-03-30 07:16:29 +00:00
void set_local_sdp(const SrsSdp& sdp);
SrsSdp* get_remote_sdp();
void set_remote_sdp(const SrsSdp& sdp);
2020-05-05 23:37:00 +00:00
SrsRtcSessionStateType state();
void set_state(SrsRtcSessionStateType state);
2020-05-04 06:47:58 +00:00
std::string id();
std::string peer_id();
void set_peer_id(std::string v);
std::string username();
void set_encrypt(bool v);
void switch_to_context();
int context_id();
public:
2020-05-04 06:47:58 +00:00
srs_error_t initialize(SrsSource* source, SrsRequest* r, bool is_publisher, std::string username, int context_id);
2020-04-30 06:49:37 +00:00
// The peer address may change, we can identify that by STUN messages.
srs_error_t on_stun(SrsUdpMuxSocket* skt, SrsStunPacket* r);
srs_error_t on_dtls(char* data, int nb_data);
srs_error_t on_rtcp(char* data, int nb_data);
srs_error_t on_rtp(char* data, int nb_data);
public:
srs_error_t on_connection_established();
srs_error_t start_play();
srs_error_t start_publish();
bool is_stun_timeout();
2020-04-30 06:49:37 +00:00
void update_sendonly_socket(SrsUdpMuxSocket* skt);
2020-05-04 06:47:58 +00:00
public:
// Simulate the NACK to drop nn packets.
void simulate_nack_drop(int nn);
2020-03-07 16:30:31 +00:00
private:
2020-04-30 06:49:37 +00:00
srs_error_t on_binding_request(SrsStunPacket* r);
srs_error_t on_rtcp_feedback(char* data, int nb_data);
srs_error_t on_rtcp_ps_feedback(char* data, int nb_data);
srs_error_t on_rtcp_xr(char* data, int nb_data);
srs_error_t on_rtcp_sender_report(char* data, int nb_data);
srs_error_t on_rtcp_receiver_report(char* data, int nb_data);
};
class SrsUdpMuxSender : virtual public ISrsUdpSender, virtual public ISrsCoroutineHandler, virtual public ISrsReloadHandler
2020-02-28 15:18:39 +00:00
{
private:
srs_netfd_t lfd;
SrsRtcServer* server;
2020-04-05 08:53:08 +00:00
SrsCoroutine* trd;
private:
2020-04-05 08:53:08 +00:00
srs_cond_t cond;
bool waiting_msgs;
2020-04-18 02:35:30 +00:00
bool gso;
int nn_senders;
private:
2020-04-09 11:38:50 +00:00
// Hotspot msgs, we are working on it.
// @remark We will wait util all messages are ready.
std::vector<srs_mmsghdr> hotspot;
2020-04-09 11:38:50 +00:00
// Cache msgs, for other coroutines to fill it.
std::vector<srs_mmsghdr> cache;
2020-04-09 11:38:50 +00:00
int cache_pos;
// The max number of messages for sendmmsg. If 1, we use sendmsg to send.
int max_sendmmsg;
2020-04-17 04:48:05 +00:00
// The total queue length, for each sender.
2020-04-17 04:30:53 +00:00
int queue_length;
2020-04-18 02:35:30 +00:00
// The extra queue ratio.
int extra_ratio;
int extra_queue;
public:
SrsUdpMuxSender(SrsRtcServer* s);
virtual ~SrsUdpMuxSender();
public:
2020-04-17 04:30:53 +00:00
virtual srs_error_t initialize(srs_netfd_t fd, int senders);
private:
void free_mhdrs(std::vector<srs_mmsghdr>& mhdrs);
public:
virtual srs_error_t fetch(srs_mmsghdr** pphdr);
virtual srs_error_t sendmmsg(srs_mmsghdr* hdr);
2020-04-17 04:30:53 +00:00
virtual bool overflow();
2020-04-18 02:35:30 +00:00
virtual void set_extra_ratio(int r);
public:
virtual srs_error_t cycle();
// interface ISrsReloadHandler
public:
virtual srs_error_t on_reload_rtc_server();
};
class SrsRtcServer : virtual public ISrsUdpMuxHandler, virtual public ISrsHourGlass
{
private:
SrsHourGlass* timer;
std::vector<SrsUdpMuxListener*> listeners;
std::vector<SrsUdpMuxSender*> senders;
2020-02-28 15:18:39 +00:00
private:
2020-03-07 16:30:31 +00:00
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)
2020-02-28 15:18:39 +00:00
public:
SrsRtcServer();
2020-02-28 15:18:39 +00:00
virtual ~SrsRtcServer();
public:
virtual srs_error_t initialize();
public:
// TODO: FIXME: Support gracefully quit.
// TODO: FIXME: Support reload.
2020-05-05 23:37:00 +00:00
srs_error_t listen_udp();
2020-04-10 11:21:47 +00:00
virtual srs_error_t on_udp_packet(SrsUdpMuxSocket* skt);
2020-05-05 23:37:00 +00:00
srs_error_t listen_api();
public:
2020-05-05 23:37:00 +00:00
// Peer start offering, we answer it.
2020-05-03 05:49:53 +00:00
srs_error_t create_session(
2020-04-26 08:12:23 +00:00
SrsRequest* req, const SrsSdp& remote_sdp, SrsSdp& local_sdp, const std::string& mock_eip, bool publish,
SrsRtcSession** psession
);
2020-05-05 23:37:00 +00:00
// We start offering, create_session2 to generate offer, setup_session2 to handle answer.
srs_error_t create_session2(SrsSdp& local_sdp, SrsRtcSession** psession);
srs_error_t setup_session2(SrsRtcSession* session, SrsRequest* req, const SrsSdp& remote_sdp);
public:
2020-05-03 05:49:53 +00:00
bool insert_into_id_sessions(const std::string& peer_id, SrsRtcSession* session);
void check_and_clean_timeout_session();
int nn_sessions();
2020-05-03 05:49:53 +00:00
SrsRtcSession* find_session_by_username(const std::string& ufrag);
2020-05-04 06:47:58 +00:00
private:
2020-05-03 05:49:53 +00:00
SrsRtcSession* find_session_by_peer_id(const std::string& peer_id);
// interface ISrsHourGlass
public:
virtual srs_error_t notify(int type, srs_utime_t interval, srs_utime_t tick);
2020-02-28 15:18:39 +00:00
};
// The RTC server adapter.
class RtcServerAdapter : public ISrsHybridServer
{
private:
SrsRtcServer* rtc;
public:
RtcServerAdapter();
virtual ~RtcServerAdapter();
public:
virtual srs_error_t initialize();
virtual srs_error_t run();
virtual void stop();
};
2020-02-28 15:18:39 +00:00
#endif