-
When testing our LNC implementation, I noticed only one tab could connect via LNC at a time. Is that right? Or did I misinterpret connection errors? If that's right, and only one browser tab or device can consume an LNC session, how might I change that? Would I need to run a mailbox myself to increase the connection limit? Is it a litd configuration thing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, it's correct, you can only use a pairing phrase a single time. A pairing phrase corresponds to a single LNC session, which is unique. But you can create as many sessions (each with a different pairing phrase) with the same permissions (and optionally restricted to the same account ID) as you want and use them in parallel. The restriction of single-use-pairing-phrase comes from the underlying cryptography protocol (SPAKE2+Noise) and cannot easily be changed without security tradeoffs. |
Beta Was this translation helpful? Give feedback.
Yes, it's correct, you can only use a pairing phrase a single time. A pairing phrase corresponds to a single LNC session, which is unique. But you can create as many sessions (each with a different pairing phrase) with the same permissions (and optionally restricted to the same account ID) as you want and use them in parallel.
The restriction of single-use-pairing-phrase comes from the underlying cryptography protocol (SPAKE2+Noise) and cannot easily be changed without security tradeoffs.