What driver should I use, the ioLibrary_BSD or the ioLibrary

What driver should I use, the ioLibrary_BSD or the ioLibrary?

How would I choose?

It says โ€œThe function names of this ioLibrary_BSD are the same as the function names of the ioLibrary.โ€ :unamused:

So why is there a need for two drivers? :question:

Hi~ Eerik

The ioLibrary_BSD means Berkeley sockets (or BSD sockets).
methods provided by the Berkeley sockets API library like socket(),connect(),listen(),send(),
But the ioLibrary is made in our company like TCPReSend(),TCPReSendNB().
The TCPReSendNB function is non-blocking of TCPsend(default is blocking like while()).
The choice is yours.
If you want to use the Berkeley sockets API, you just choice a ioLibrary_BSD.

thank
ekkim :slight_smile: