mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-03-19 12:30:55 +08:00
- 增加客户端模式,支持主动拉流、推流: - addStreamProxy接口新增支持whep主动拉流,拉流地址目前只兼容zlm的whep url。 - addStreamPusherProxy接口新增支持whip主动推流,推流地址目前只兼容zlm的whip url。 - 以上推流url格式为webrtc[s]://server_host:server_port/app/stream_id?key=value, 内部会自动转换为http[s]://server_host:server_port/index/api/[whip/whep]?app=app&stream=stream_id&key=value。 - 增加WebRtc p2p 模式: - 增加 ICE FULL模式。 - 增加STUN/TURN 服务器。 - 增加websocket 信令。 - 增加P2P代理拉流。 --------- Co-authored-by: xia-chu <771730766@qq.com> Co-authored-by: mtdxc <mtdxc@126.com> Co-authored-by: cqm <cqm@97kid.com>
30 lines
743 B
C++
30 lines
743 B
C++
#ifndef ZLMEDIAKIT_SRT_SESSION_H
|
|
#define ZLMEDIAKIT_SRT_SESSION_H
|
|
|
|
#include "Network/Session.h"
|
|
#include "SrtTransport.hpp"
|
|
|
|
namespace SRT {
|
|
|
|
using namespace toolkit;
|
|
|
|
class SrtSession : public Session {
|
|
public:
|
|
SrtSession(const Socket::Ptr &sock);
|
|
|
|
void onRecv(const Buffer::Ptr &) override;
|
|
void onError(const SockException &err) override;
|
|
void onManager() override;
|
|
void attachServer(const toolkit::Server &server) override;
|
|
static EventPoller::Ptr queryPoller(const Buffer::Ptr &buffer);
|
|
|
|
private:
|
|
bool _find_transport = true;
|
|
Ticker _ticker;
|
|
struct sockaddr_storage _peer_addr;
|
|
SrtTransport::Ptr _transport;
|
|
};
|
|
|
|
} // namespace SRT
|
|
#endif // ZLMEDIAKIT_SRT_SESSION_H
|