summaryrefslogtreecommitdiff
path: root/src/net/WebRTCDataChannelNative.cpp
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2021-09-22 23:06:19 +0200
committerGitHub <noreply@github.com>2021-09-22 23:06:19 +0200
commit8c18112f5dcf96bf24fab14ab4470c00ab7f7f70 (patch)
tree32593cc621a8908e021d6fe044a59d8238b46524 /src/net/WebRTCDataChannelNative.cpp
parentc37cc530e739d58b272d78f2749d21a5c58debce (diff)
parent3bdf6cdc1320dfd7ac0f1704976a633ef3c911d8 (diff)
downloadfork-godot-webrtc-native-8c18112f5dcf96bf24fab14ab4470c00ab7f7f70.tar.gz
fork-godot-webrtc-native-8c18112f5dcf96bf24fab14ab4470c00ab7f7f70.tar.bz2
fork-godot-webrtc-native-8c18112f5dcf96bf24fab14ab4470c00ab7f7f70.zip
Merge pull request #43 from dsnopek/buffered-amount
Add get_buffered_amount() to WebRTCDataChannel (GDNative)
Diffstat (limited to 'src/net/WebRTCDataChannelNative.cpp')
-rw-r--r--src/net/WebRTCDataChannelNative.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/WebRTCDataChannelNative.cpp b/src/net/WebRTCDataChannelNative.cpp
index 86d0afa..4e6b114 100644
--- a/src/net/WebRTCDataChannelNative.cpp
+++ b/src/net/WebRTCDataChannelNative.cpp
@@ -113,6 +113,10 @@ bool is_negotiated_wdc(const void *user) {
return ((WebRTCDataChannelNative *)user)->is_negotiated();
}
+int get_buffered_amount_wdc(const void *user) {
+ return ((WebRTCDataChannelNative *)user)->get_buffered_amount();
+}
+
godot_error poll_wdc(void *user) {
return ((WebRTCDataChannelNative *)user)->poll();
}