Replies: 1 comment 2 replies
-
Welcome. The best option sounds like you want to use MSG endpoints. Each client would have a single endpoint that it uses to connect. The server would create a passive endpoint, listen on it, and accept new connections on a separate endpoint - 1 endpoint per client. Fabtests specific to this will have the string 'msg' in the name, though several tests support msg endpoints. You could start with functional/msg.c. The server only accepts a single client connection in this example, but the general flow is there. Because fabtest uses a lot a common code, some of the underlying calls won't be needed as they apply to different endpoints. Specifically, you can ignore AV related calls, and the cntr APIs to start with. |
Beta Was this translation helpful? Give feedback.
-
Hi,
For example, a single server reads data from multiple clients (N) in different nodes.
1a) Does the server needs to have N endpoints and each client has a single endpoint?
1b) Does such sample usecase available in fabtests?
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions