diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-09-11 17:31:57 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-09-16 13:07:06 +0200 |
commit | 1009e8bb1c822fbda2ae6d8178508b352cc6a5ff (patch) | |
tree | 191df97ffec9dbdf2836b230fabc074ddea9f82a /src/WebRTCLibPeerConnection.hpp | |
parent | 5fd359f67405d772f1a407e7a80b293d9e1f4b8b (diff) | |
download | fork-godot-webrtc-native-1009e8bb1c822fbda2ae6d8178508b352cc6a5ff.tar.gz fork-godot-webrtc-native-1009e8bb1c822fbda2ae6d8178508b352cc6a5ff.tar.bz2 fork-godot-webrtc-native-1009e8bb1c822fbda2ae6d8178508b352cc6a5ff.zip |
Add methods to get gathering and signaling state.
Diffstat (limited to 'src/WebRTCLibPeerConnection.hpp')
-rw-r--r-- | src/WebRTCLibPeerConnection.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WebRTCLibPeerConnection.hpp b/src/WebRTCLibPeerConnection.hpp index 2f7c6e3..5709996 100644 --- a/src/WebRTCLibPeerConnection.hpp +++ b/src/WebRTCLibPeerConnection.hpp @@ -73,6 +73,8 @@ public: void _init(); ConnectionState _get_connection_state() const override; + GatheringState _get_gathering_state() const override; + SignalingState _get_signaling_state() const override; godot::Error _initialize(const godot::Dictionary &p_config) override; godot::Object *_create_data_channel(const godot::String &p_channel, const godot::Dictionary &p_channel_config) override; |