Skip to content

Commit b8ccdc4

Browse files
committed
chore: pr comments
1 parent 9157c0c commit b8ccdc4

File tree

2 files changed

+15
-27
lines changed

2 files changed

+15
-27
lines changed

include/rtc/global.hpp

+3-8
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,16 @@ RTC_CPP_EXPORT void InitLogger(LogLevel level, LogCallback callback = nullptr);
3434
RTC_CPP_EXPORT void Preload();
3535
RTC_CPP_EXPORT std::shared_future<void> Cleanup();
3636

37-
struct UnhandledStunRequest {
37+
struct IceUdpMuxRequest {
3838
std::string localUfrag;
3939
std::string remoteUfrag;
4040
std::string remoteHost;
4141
uint16_t remotePort;
4242
};
4343

44-
RTC_CPP_EXPORT typedef std::function<void(UnhandledStunRequest request, void* userPtr)> UnhandledStunRequestCallback;
44+
RTC_CPP_EXPORT typedef std::function<void(IceUdpMuxRequest request)> IceUdpMuxCallback;
4545

46-
struct UnhandledStunRequestHandler {
47-
UnhandledStunRequestCallback callback;
48-
void *userPtr;
49-
};
50-
51-
RTC_CPP_EXPORT void OnUnhandledStunRequest(std::string host, int port, UnhandledStunRequestCallback callback = nullptr, void *userPtr = nullptr);
46+
RTC_CPP_EXPORT void ListenIceUdpMux (int port, IceUdpMuxCallback *callback, std::optional<std::string> bindAddress = nullptr);
5247

5348
struct SctpSettings {
5449
// For the following settings, not set means optimized default

src/global.cpp

+12-19
Original file line numberDiff line numberDiff line change
@@ -93,41 +93,40 @@ std::shared_future<void> Cleanup() { return impl::Init::Instance().cleanup(); }
9393

9494
void SetSctpSettings(SctpSettings s) { impl::Init::Instance().setSctpSettings(std::move(s)); }
9595

96-
std::map<int, UnhandledStunRequestHandler *> unboundStunCallbacks;
97-
9896
#if !USE_NICE
9997

10098
void InvokeUnhandledStunRequestCallback (const juice_mux_binding_request *info, void *user_ptr) {
10199
PLOG_DEBUG << "Invoking unhandled STUN request callback";
102100

103-
UnhandledStunRequestHandler *handler = (struct UnhandledStunRequestHandler*)user_ptr;
101+
IceUdpMuxCallback *callback = (IceUdpMuxCallback*)user_ptr;
104102

105-
if (handler->callback) {
106-
handler->callback({
103+
if (callback) {
104+
printf("invoking callback\n");
105+
(*callback)({
107106
std::string(info->local_ufrag),
108107
std::string(info->remote_ufrag),
109108
std::string(info->address),
110109
info->port
111-
}, handler->userPtr);
110+
});
112111
} else {
113112
PLOG_DEBUG << "No unhandled STUN request callback configured for port " << info->port;
114113
}
115114
}
116115

117116
#endif
118117

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) {
120119
#if USE_NICE
121120
PLOG_WARNING << "BindStunListener is not supported with libnice, please use libjuice";
122121
#else
122+
// NULL host binds to all available addresses
123+
const char *host = bindAddress.has_value() ? bindAddress.value().c_str() : NULL;
124+
123125
if (callback == NULL) {
124126
PLOG_DEBUG << "Removing unhandled STUN request listener";
125127

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) {
131130
throw std::runtime_error("Could not unbind STUN listener");
132131
}
133132

@@ -136,13 +135,7 @@ void OnUnhandledStunRequest ([[maybe_unused]] std::string host, [[maybe_unused]]
136135

137136
PLOG_DEBUG << "Adding listener for unhandled STUN requests";
138137

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) {
146139
throw std::invalid_argument("Could not add listener for unhandled STUN requests");
147140
}
148141
#endif

0 commit comments

Comments
 (0)