Skip to content

Releases: eminfedar/async-sockets-cpp

v0.3.1

12 May 07:18
d66588d
Compare
Choose a tag to compare

Thanks to @stewpend0us, we can customize the BUFFER_SIZE inside of the sockets for example:

TCPSocket<0xFFFF> socket; // 0xFFFF is the Buffer size you want for handling incoming messages
TCPServer<0xFFFF> server;

UDPSocket<0xFFFF> udp_socket;
UDPServer<0xFFFF> udp_server;

v0.3.0

02 May 14:29
d66588d
Compare
Choose a tag to compare
Merge pull request #28 from stewpend0us/master

optionally expose the internal buffer size to the user (if they need it)

async-sockets-cpp v0.2.1

07 Nov 12:29
Compare
Choose a tag to compare

SO_REUSEADDR & SO_REUSEPORT added. (to fix TIME_WAIT)

async-sockets-cpp v0.2

12 Jun 11:33
Compare
Choose a tag to compare
  • UDPSocket Connect & Send methods added.
  • Better Performance

async-sockets-cpp v0.1

10 May 10:52
Compare
Choose a tag to compare

It is usable and seems work nicely.