You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the ucp_client_server.c example, there is this comment
/* Server is always up listening /
while (1) {
/ Wait for the server to receive a connection request from the client.
* If there are multiple clients for which the server's connection request
* callback is invoked, i.e. several clients are trying to connect in
* parallel, the server will handle only the first one and reject the rest */
For the rejected client connections, how can the clients recognize their connection requests were rejected by the server, and how can they retry? The goal is for all the clients to successfully connect to the server.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
In the ucp_client_server.c example, there is this comment
/* Server is always up listening /
while (1) {
/ Wait for the server to receive a connection request from the client.
* If there are multiple clients for which the server's connection request
* callback is invoked, i.e. several clients are trying to connect in
* parallel, the server will handle only the first one and reject the rest */
For the rejected client connections, how can the clients recognize their connection requests were rejected by the server, and how can they retry? The goal is for all the clients to successfully connect to the server.
Beta Was this translation helpful? Give feedback.
All reactions