@flashphoner/websdk 2.0.254 → 2.0.256
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/docTemplate/README.md +1 -1
- package/examples/demo/streaming/firewall-traversal-streaming/firewall-traversal-streaming.js +21 -5
- package/flashphoner-no-flash.js +6 -2
- package/flashphoner-no-flash.min.js +1 -1
- package/flashphoner-no-webrtc.js +6 -2
- package/flashphoner-no-webrtc.min.js +1 -1
- package/flashphoner-no-wsplayer.js +6 -2
- package/flashphoner-no-wsplayer.min.js +1 -1
- package/flashphoner-room-api-webrtc-only.js +6 -2
- package/flashphoner-room-api-webrtc-only.min.js +1 -1
- package/flashphoner-room-api.js +6 -2
- package/flashphoner-room-api.min.js +1 -1
- package/flashphoner-temasys-flash-websocket-without-adapterjs.js +6 -2
- package/flashphoner-temasys-flash-websocket.js +6 -2
- package/flashphoner-temasys-flash-websocket.min.js +1 -1
- package/flashphoner-webrtc-only.js +6 -2
- package/flashphoner-webrtc-only.min.js +1 -1
- package/flashphoner.js +6 -2
- package/flashphoner.min.js +1 -1
- package/package.json +1 -1
- package/src/flashphoner-core.js +6 -2
package/flashphoner-room-api.js
CHANGED
|
@@ -9988,8 +9988,9 @@ var createSession = function (options) {
|
|
|
9988
9988
|
}
|
|
9989
9989
|
switch (data.message) {
|
|
9990
9990
|
case 'ping':
|
|
9991
|
+
logger.debug(LOG_PREFIX, "<<< ping");
|
|
9991
9992
|
send("pong", null);
|
|
9992
|
-
|
|
9993
|
+
logger.debug(LOG_PREFIX, ">>> pong");
|
|
9993
9994
|
break;
|
|
9994
9995
|
case 'getUserData':
|
|
9995
9996
|
authToken = obj.authToken;
|
|
@@ -10099,8 +10100,11 @@ var createSession = function (options) {
|
|
|
10099
10100
|
}
|
|
10100
10101
|
break;
|
|
10101
10102
|
default:
|
|
10102
|
-
|
|
10103
|
+
logger.info(LOG_PREFIX, "Unknown server message " + data.message);
|
|
10103
10104
|
}
|
|
10105
|
+
// Reset missing pings counter on any message received successfully #WCS-4343
|
|
10106
|
+
logger.debug(LOG_PREFIX, "Reset missing pings counter by " + data.message + " message");
|
|
10107
|
+
wsPingReceiver.success();
|
|
10104
10108
|
};
|
|
10105
10109
|
}
|
|
10106
10110
|
|