ConnectionOpen -> ConnectionStart - question about ports in use #1701
timprepscius
started this conversation in
General
Replies: 1 comment 4 replies
-
You can use a single port to practically start unlimited client connections. You do have to open separate connection objects/handles for each. The one extra step you need to set |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Am I allowed to:
(pseudo)
var connection = connectionOpen();
connectionStart(connection, ..., callbackForServerA, serverA_IP, serverAPort);
connectionStart(connection, ..., callbackForServerB, serverB_IP, serverBPort);
Is this allowed? If I want to make connections to let's say, 10000 computers,
do I need to use more than one port ?
When is the port actually created (I assumed in connectionOpen)?
In a nutshell, I am looking for a solution where a client uses only one UDP port to connect to multiple servers.
Just as the server would use one port to listen for connections.
Is this possible with QUIC?
Thanks,
-tim
Beta Was this translation helpful? Give feedback.
All reactions