diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-07-21 06:28:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-21 06:28:08 +0200 |
commit | ff85bbc41c4f7c416c04f29d59284097a84f41c3 (patch) | |
tree | 4b3821d59f6687c587b86207319d88cd3ed5b403 /modules/webrtc/webrtc_data_channel_js.h | |
parent | e248d2629ab9cb1dcfa91af5202af4f17754e44f (diff) | |
parent | abb45f5fe7a1d5a44511675ee8695cc3859698b1 (diff) |
Merge pull request #50658 from dsnopek/webrtc-get-buffered-amount
Add get_buffered_amount() to WebRTCDataChannel
Diffstat (limited to 'modules/webrtc/webrtc_data_channel_js.h')
-rw-r--r-- | modules/webrtc/webrtc_data_channel_js.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/webrtc/webrtc_data_channel_js.h b/modules/webrtc/webrtc_data_channel_js.h index db58ebccff..5cd6a32ed9 100644 --- a/modules/webrtc/webrtc_data_channel_js.h +++ b/modules/webrtc/webrtc_data_channel_js.h @@ -72,6 +72,7 @@ public: virtual int get_max_retransmits() const override; virtual String get_protocol() const override; virtual bool is_negotiated() const override; + virtual int get_buffered_amount() const override; virtual Error poll() override; virtual void close() override; |