Hi, I'm using a C socket library I found online to implement a tcp socket data transfer program.
Is it possible to make 2 threads share the same socket connection (1 read and 1 write), and have the read thread perform a blocking read and recv data while the write thread constantly writes data?
All of the example socket programs I've seen only do 1 way communication, or send data only after it receives.
Thank you.