bert.cpp
bert.cpp copied to clipboard
Is it possible to make multiple socket connection at the same time from same machine.
We ran one fast api on a machine on two different port. The API make socket connection to the bert.cpp socket server. In this only first app is connected and when second is started it just hangs after the socket.connect method. Is it possible to make multiple socket connection at the same time from same machine?
You need to have a new socket (and a thread) for each incoming connection.