Releases: simdsoft/yasio
Releases · simdsoft/yasio
v3.39.5
v3.39.4
v3.39.3
- Improve
byte_buffer
stl compatible - Add option
YOPT_C_UNPACK_NO_BSWAP
- Add
urlEncode/urlDecode
to extensionyasio_http
- Improve extension
yasio_http
as unreal engine plugin - Fix missing retrun statement in
cxx17::string_view
hasher template - Change lua script io_event.packet(bool) to io_event:packet(bufferType)
- yasio.BUFFER_DEFAULT: take packet as native yasio::ibstream
- yasio.BUFFER_NO_BSWAP: take packet as natvie yasio::fast_ibstream without byte order convert
- yasio.BUFFER_RAW: take packet as lua string
- CMake: Set default ssl backend to mbedtls
v3.39.2
yasio-3.39.1
CHANGELOG
- Don't output transport object address
yasio-3.39.0
CHANGELOG
- Improve binary reader and writer, the push/pop API was broken, use -DYASIO_OBS_BUILTIN_STACK=1 for compatible with previous releease
- Improve stop flow, always try do stop at io_service destructor
yasio-3.37.8
CHANGELOG
- Fix trasnport reuse problem
- Unify transport address print format
All users should update immediately.
yasio-3.37.7
CHANGELOG
- Fix connnect maybe always failed with error
-26
when last domain name resolving failed - Fix
xxsocket::strerror
incorrect forMinGW
- Add
UWP
ci - Improve io_service::stop flow, thanks to @koobin
- Other code improvements
yasio-3.37.6
- Add option
YOPT_S_DNS_LIST
to set custom dns servers build with c-ares - Add OpenSSL 3.0.0 support
- Add better API
ip::endpoint::format_to
to format socket address to string - Add API
ip::endpoint::scope_id
to set or get ipv6scope_id
- Improve
ip::endpoint::as_xx
for parsingscope_id
from ipv6 string - Add MinGW build support
- Fix compile issue when build inside unreal engine with module
TraceAnalysis
- Fix timer queue not sort when same timer's expire time was modified, thanks to @koobin
- Fix the
len
ofip::endpoint
not set when update endpoint ip withip::endpoint::ip
, will cause error10014
on windows - Make
ibstream_view
can construct withbasic_obstream_view
- Improve
xxsocket::disconnect
platform compatible for BSD-like systems and windows - Imporve
multicast
support, and the test case works on windows,linux,macOS, thanks to @wzhengsen - Add option
YOPT_C_MCAST_IF
to set multicast interface, on BSD-like system, it's required for ipv6 - Improve
io_service::stop
flow, thanks to @koobin