ZLMediaKit/webrtc/WebRtcSession.h

56 lines
1.6 KiB
C++
Raw Normal View History

2021-09-08 18:00:55 +08:00
/*
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
*
* Use of this source code is governed by MIT license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
*/
#ifndef ZLMEDIAKIT_WEBRTCSESSION_H
#define ZLMEDIAKIT_WEBRTCSESSION_H
#include "Network/Session.h"
#include "Http/HttpRequestSplitter.h"
namespace toolkit {
class TcpServer;
}
2021-09-08 18:00:55 +08:00
2022-09-18 21:03:05 +08:00
namespace mediakit {
class WebRtcTransportImp;
using namespace toolkit;
2022-09-18 21:03:05 +08:00
class WebRtcSession : public Session, public HttpRequestSplitter {
2021-09-08 18:00:55 +08:00
public:
WebRtcSession(const Socket::Ptr &sock);
~WebRtcSession() override;
void attachServer(const Server &server) override;
2021-09-08 18:00:55 +08:00
void onRecv(const Buffer::Ptr &) override;
void onError(const SockException &err) override;
void onManager() override;
2021-10-16 10:29:00 +08:00
static EventPoller::Ptr queryPoller(const Buffer::Ptr &buffer);
2021-09-15 11:50:15 +08:00
private:
//// HttpRequestSplitter override ////
ssize_t onRecvHeader(const char *data, size_t len) override;
const char *onSearchPacketTail(const char *data, size_t len) override;
void onRecv_l(const char *data, size_t len);
private:
bool _over_tcp = false;
2021-09-15 11:50:15 +08:00
bool _find_transport = true;
2021-09-10 22:31:44 +08:00
Ticker _ticker;
2022-05-08 00:26:01 +08:00
struct sockaddr_storage _peer_addr;
std::weak_ptr<toolkit::TcpServer> _server;
std::shared_ptr<WebRtcTransportImp> _transport;
2021-09-08 18:00:55 +08:00
};
2022-09-18 21:03:05 +08:00
}// namespace mediakit
2021-09-08 18:00:55 +08:00
#endif //ZLMEDIAKIT_WEBRTCSESSION_H