node-datachannel 0.32.2 → 0.32.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CMakeLists.txt
CHANGED
package/package.json
CHANGED
|
@@ -145,6 +145,7 @@ void IceUdpMuxListenerWrapper::onUnhandledStunRequest(const Napi::CallbackInfo &
|
|
|
145
145
|
{
|
|
146
146
|
Napi::Object reqObj = Napi::Object::New(env);
|
|
147
147
|
reqObj.Set("ufrag", request.remoteUfrag.c_str());
|
|
148
|
+
reqObj.Set("localUfrag", request.localUfrag.c_str());
|
|
148
149
|
reqObj.Set("host", request.remoteAddress.c_str());
|
|
149
150
|
reqObj.Set("port", request.remotePort);
|
|
150
151
|
|