summaryrefslogtreecommitdiff
path: root/netwerk
diff options
context:
space:
mode:
authorBasilisk-Dev <basiliskdev@protonmail.com>2023-08-26 23:09:27 -0400
committerBasilisk-Dev <basiliskdev@protonmail.com>2023-08-26 23:09:27 -0400
commitd9eb5d3e2b3b8e09b635dbbba006cee92c2a515c (patch)
tree1beadfd5e116effb433b19fba60091a182b7cf1d /netwerk
parent9e85eb28161188417db86668a6e5c70efe56a37a (diff)
downloaduxp-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.cpp3
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) {