ZLMediaKit/webrtc/WebRtcSession.h

41 lines
1.1 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 "IceServer.hpp"
#include "WebRtcTransport.h"
class WebRtcSession : public UdpSession {
public:
WebRtcSession(const Socket::Ptr &sock);
~WebRtcSession() override;
void onRecv(const Buffer::Ptr &) override;
void onError(const SockException &err) override;
void onManager() override;
2021-10-15 17:12:39 +08:00
std::string getIdentifier() const override;
2021-09-08 18:00:55 +08:00
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:
2021-10-15 17:12:39 +08:00
std::string _identifier;
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::shared_ptr<WebRtcTransportImp> _transport;
2021-09-08 18:00:55 +08:00
};
#endif //ZLMEDIAKIT_WEBRTCSESSION_H