![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/lib/node_modules/mediasoup/worker/include/RTC/ |
Upload File : |
#ifndef MS_RTC_DATA_PRODUCER_HPP #define MS_RTC_DATA_PRODUCER_HPP #include "common.hpp" #include "Channel/Request.hpp" #include "RTC/SctpDictionaries.hpp" #include <json.hpp> #include <string> namespace RTC { class DataProducer { public: class Listener { public: virtual void OnDataProducerMessageReceived( RTC::DataProducer* dataProducer, uint32_t ppid, const uint8_t* msg, size_t len) = 0; }; public: enum class Type : uint8_t { SCTP = 0, DIRECT }; public: DataProducer(const std::string& id, RTC::DataProducer::Listener* listener, json& data); virtual ~DataProducer(); public: void FillJson(json& jsonObject) const; void FillJsonStats(json& jsonArray) const; void HandleRequest(Channel::Request* request) const; Type GetType() const { return this->type; } const RTC::SctpStreamParameters& GetSctpStreamParameters() const { return this->sctpStreamParameters; } void ReceiveMessage(uint32_t ppid, const uint8_t* msg, size_t len); public: // Passed by argument. const std::string id; private: // Passed by argument. RTC::DataProducer::Listener* listener{ nullptr }; // Others. Type type; std::string typeString; RTC::SctpStreamParameters sctpStreamParameters; std::string label; std::string protocol; size_t messagesReceived{ 0u }; size_t bytesReceived{ 0u }; }; } // namespace RTC #endif