Skip to content

Commit 5650169

Browse files
committed
chore: rename callback invoker
1 parent b8ccdc4 commit 5650169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/global.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ void SetSctpSettings(SctpSettings s) { impl::Init::Instance().setSctpSettings(st
9595

9696
#if !USE_NICE
9797

98-
void InvokeUnhandledStunRequestCallback (const juice_mux_binding_request *info, void *user_ptr) {
98+
void InvokeIceUdpMuxCallback (const juice_mux_binding_request *info, void *user_ptr) {
9999
PLOG_DEBUG << "Invoking unhandled STUN request callback";
100100

101101
IceUdpMuxCallback *callback = (IceUdpMuxCallback*)user_ptr;
@@ -135,7 +135,7 @@ void ListenIceUdpMux ([[maybe_unused]] int port, [[maybe_unused]] IceUdpMuxCallb
135135

136136
PLOG_DEBUG << "Adding listener for unhandled STUN requests";
137137

138-
if (juice_mux_listen(host, port, &InvokeUnhandledStunRequestCallback, callback) < 0) {
138+
if (juice_mux_listen(host, port, &InvokeIceUdpMuxCallback, callback) < 0) {
139139
throw std::invalid_argument("Could not add listener for unhandled STUN requests");
140140
}
141141
#endif

0 commit comments

Comments
 (0)