adjustable send/receive queue sizes #7
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Should be able to receive and send up to num_clients messages every loop, currently can only receive and send one message per loop
Due to design, each client is only capable of sending at most one message per loop iteration so num_clients length is tight bound on worst case
Opted for an unbounded number of sends and a maximum number of receives set by OCT_NETWORK_MAX_RECVS (10 by default). Completed with
f254c7580d