EntropyEngine::Networking::SignalingCallbacks
EntropyEngine::Networking::SignalingCallbacks
Section titled “EntropyEngine::Networking::SignalingCallbacks”WebRTC signaling callbacks. More…
#include <ConnectionTypes.h>
Public Types
Section titled “Public Types”| Name | |
|---|---|
| using std::function< void(const std::string &type, const std::string &sdp)> | LocalDescriptionCallback |
| using std::function< void(const std::string &candidate, const std::string &mid)> | LocalCandidateCallback |
Public Attributes
Section titled “Public Attributes”| Name | |
|---|---|
| LocalDescriptionCallback | onLocalDescription |
| LocalCandidateCallback | onLocalCandidate |
Detailed Description
Section titled “Detailed Description”struct EntropyEngine::Networking::SignalingCallbacks;WebRTC signaling callbacks.
The application must provide these callbacks to handle WebRTC signaling. Typically, these would send data over WebSocket or another signaling channel.
Public Types Documentation
Section titled “Public Types Documentation”using LocalDescriptionCallback
Section titled “using LocalDescriptionCallback”using EntropyEngine::Networking::SignalingCallbacks::LocalDescriptionCallback = std::function<void(const std::string& type, const std::string& sdp)>;using LocalCandidateCallback
Section titled “using LocalCandidateCallback”using EntropyEngine::Networking::SignalingCallbacks::LocalCandidateCallback = std::function<void(const std::string& candidate, const std::string& mid)>;Public Attributes Documentation
Section titled “Public Attributes Documentation”variable onLocalDescription
Section titled “variable onLocalDescription”LocalDescriptionCallback onLocalDescription;variable onLocalCandidate
Section titled “variable onLocalCandidate”LocalCandidateCallback onLocalCandidate;Updated on 2026-01-26 at 17:14:35 -0500