freertc 0.1.32 → 0.1.33

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/README.md CHANGED
@@ -216,7 +216,7 @@ Quick checks:
216
216
  Expected `/health` response includes JSON like:
217
217
 
218
218
  ```json
219
- {"ok":true,"version":"0.1.32","protocol_version":"1.0","peers":0}
219
+ {"ok":true,"version":"0.1.33","protocol_version":"1.0","peers":0}
220
220
  ```
221
221
 
222
222
  ## Auto WebRTC two-tab test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freertc",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "description": "Cloudflare Worker signaling relay for WebRTC peers with D1 storage.",
5
5
  "keywords": [
6
6
  "webrtc",
package/public/app.js CHANGED
@@ -117,6 +117,9 @@ function deriveNetworkFromSession(sessionIdValue) {
117
117
  if (!session || !isSpecToken(session)) {
118
118
  return "";
119
119
  }
120
+ if (session.startsWith("sess:")) {
121
+ return session.slice(5);
122
+ }
120
123
  return `room:${session}`;
121
124
  }
122
125
 
@@ -125,7 +128,7 @@ function deriveSessionFromNetwork(networkValue) {
125
128
  if (!network || !isSpecToken(network)) {
126
129
  return "room:test";
127
130
  }
128
- return network;
131
+ return `sess:${network}`;
129
132
  }
130
133
 
131
134
  createApp({
@@ -7,7 +7,7 @@ import { fileURLToPath } from 'node:url';
7
7
  import { WebSocketServer } from 'ws';
8
8
 
9
9
  const PSP_VERSION = '1.0';
10
- const WORKER_VERSION = '0.1.32';
10
+ const WORKER_VERSION = '0.1.33';
11
11
  const DEFAULT_TTL_MS = 30_000;
12
12
  const MAX_TTL_MS = 120_000;
13
13
  const MAX_MESSAGE_SIZE = 64 * 1024;
package/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  const PSP_VERSION = "1.0";
2
- const WORKER_VERSION = "0.1.32";
2
+ const WORKER_VERSION = "0.1.33";
3
3
 
4
4
  const DISCOVERY_TYPES = new Set(["announce", "withdraw", "discover", "peer_list", "redirect"]);
5
5
  const NEGOTIATION_TYPES = new Set(["connect_request", "connect_accept", "connect_reject", "offer", "answer", "ice_candidate", "ice_end", "renegotiate"]);