diff options
author | Basilisk-Dev <basiliskdev@protonmail.com> | 2023-08-26 23:09:27 -0400 |
---|---|---|
committer | Basilisk-Dev <basiliskdev@protonmail.com> | 2023-08-26 23:09:27 -0400 |
commit | d9eb5d3e2b3b8e09b635dbbba006cee92c2a515c (patch) | |
tree | 1beadfd5e116effb433b19fba60091a182b7cf1d /netwerk | |
parent | 9e85eb28161188417db86668a6e5c70efe56a37a (diff) | |
download | uxp-d9eb5d3e2b3b8e09b635dbbba006cee92c2a515c.tar.gz |
Issue #2058 - Fix build issues in DataChannel.cpp after sctp upgrade
Diffstat (limited to 'netwerk')
-rw-r--r-- | netwerk/sctp/datachannel/DataChannel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/netwerk/sctp/datachannel/DataChannel.cpp b/netwerk/sctp/datachannel/DataChannel.cpp index 99e0502dc9..9130d787e1 100644 --- a/netwerk/sctp/datachannel/DataChannel.cpp +++ b/netwerk/sctp/datachannel/DataChannel.cpp @@ -173,7 +173,8 @@ GetConnectionFromSocket(struct socket* sock) // called when the buffer empties to the threshold value static int -threshold_event(struct socket* sock, uint32_t sb_free) +threshold_event(struct socket* sock, uint32_t sb_free, + void* ulp_info) { DataChannelConnection *connection = GetConnectionFromSocket(sock); if (connection) { |