As we know:
sockets functions
send()/recv()
are thread-safe (lock-based with mutex):these sockets functions use queue for non-blocking send data
And then, can we use sockets functions send()/recv()
as thread-safe queue MP-MC (multi-producer / multi-consumer)?