@@ -93,41 +93,40 @@ std::shared_future<void> Cleanup() { return impl::Init::Instance().cleanup(); }
93
93
94
94
void SetSctpSettings (SctpSettings s) { impl::Init::Instance ().setSctpSettings (std::move (s)); }
95
95
96
- std::map<int , UnhandledStunRequestHandler *> unboundStunCallbacks;
97
-
98
96
#if !USE_NICE
99
97
100
98
void InvokeUnhandledStunRequestCallback (const juice_mux_binding_request *info, void *user_ptr) {
101
99
PLOG_DEBUG << " Invoking unhandled STUN request callback" ;
102
100
103
- UnhandledStunRequestHandler *handler = (struct UnhandledStunRequestHandler *)user_ptr;
101
+ IceUdpMuxCallback *callback = (IceUdpMuxCallback *)user_ptr;
104
102
105
- if (handler->callback ) {
106
- handler->callback ({
103
+ if (callback) {
104
+ printf (" invoking callback\n " );
105
+ (*callback)({
107
106
std::string (info->local_ufrag ),
108
107
std::string (info->remote_ufrag ),
109
108
std::string (info->address ),
110
109
info->port
111
- }, handler-> userPtr );
110
+ });
112
111
} else {
113
112
PLOG_DEBUG << " No unhandled STUN request callback configured for port " << info->port ;
114
113
}
115
114
}
116
115
117
116
#endif
118
117
119
- void OnUnhandledStunRequest ([[maybe_unused]] std::string host, [[maybe_unused]] int port, [[maybe_unused]] UnhandledStunRequestCallback callback, [[maybe_unused]] void *userPtr ) {
118
+ void ListenIceUdpMux ([[maybe_unused]] int port, [[maybe_unused]] IceUdpMuxCallback * callback, [[maybe_unused]] std::optional<std::string> bindAddress ) {
120
119
#if USE_NICE
121
120
PLOG_WARNING << " BindStunListener is not supported with libnice, please use libjuice" ;
122
121
#else
122
+ // NULL host binds to all available addresses
123
+ const char *host = bindAddress.has_value () ? bindAddress.value ().c_str () : NULL ;
124
+
123
125
if (callback == NULL ) {
124
126
PLOG_DEBUG << " Removing unhandled STUN request listener" ;
125
127
126
- free (unboundStunCallbacks.at (port));
127
- unboundStunCallbacks.erase (port);
128
-
129
- // call with NULL callback to unbind
130
- if (juice_mux_listen (host.c_str (), port, NULL , NULL ) < 0 ) {
128
+ // call with NULL callback to remove the listener for the host/port
129
+ if (juice_mux_listen (host, port, NULL , NULL ) < 0 ) {
131
130
throw std::runtime_error (" Could not unbind STUN listener" );
132
131
}
133
132
@@ -136,13 +135,7 @@ void OnUnhandledStunRequest ([[maybe_unused]] std::string host, [[maybe_unused]]
136
135
137
136
PLOG_DEBUG << " Adding listener for unhandled STUN requests" ;
138
137
139
- UnhandledStunRequestHandler *handler = (UnhandledStunRequestHandler*)calloc (1 , sizeof (UnhandledStunRequestHandler));
140
- handler->callback = std::move (callback);
141
- handler->userPtr = userPtr;
142
-
143
- unboundStunCallbacks[port] = handler;
144
-
145
- if (juice_mux_listen (host.c_str (), port, &InvokeUnhandledStunRequestCallback, handler) < 0 ) {
138
+ if (juice_mux_listen (host, port, &InvokeUnhandledStunRequestCallback, callback) < 0 ) {
146
139
throw std::invalid_argument (" Could not add listener for unhandled STUN requests" );
147
140
}
148
141
#endif
0 commit comments