now works with libuv v1.37 (see #191)
This commit is contained in:
parent
3d9e45e733
commit
ff97bbbc9d
@ -71,7 +71,7 @@ function(fetch_libuv)
|
|||||||
FetchContent_Declare(
|
FetchContent_Declare(
|
||||||
libuv
|
libuv
|
||||||
GIT_REPOSITORY https://github.com/libuv/libuv.git
|
GIT_REPOSITORY https://github.com/libuv/libuv.git
|
||||||
GIT_TAG v1.36.0
|
GIT_TAG v1.37.0
|
||||||
GIT_SHALLOW 1
|
GIT_SHALLOW 1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@ -14,7 +14,7 @@ class UVMConan(ConanFile):
|
|||||||
exports = "LICENSE"
|
exports = "LICENSE"
|
||||||
exports_sources = "src/*"
|
exports_sources = "src/*"
|
||||||
no_copy_source = True
|
no_copy_source = True
|
||||||
requires = "libuv/1.35.0@bincrafters/stable"
|
requires = "libuv/1.37.0@bincrafters/stable"
|
||||||
|
|
||||||
def package(self):
|
def package(self):
|
||||||
self.copy(pattern="LICENSE", dst="licenses")
|
self.copy(pattern="LICENSE", dst="licenses")
|
||||||
|
|||||||
@ -46,7 +46,8 @@ enum class UVUDPFlags: std::underlying_type_t<uv_udp_flags> {
|
|||||||
IPV6ONLY = UV_UDP_IPV6ONLY,
|
IPV6ONLY = UV_UDP_IPV6ONLY,
|
||||||
UDP_PARTIAL = UV_UDP_PARTIAL,
|
UDP_PARTIAL = UV_UDP_PARTIAL,
|
||||||
REUSEADDR = UV_UDP_REUSEADDR,
|
REUSEADDR = UV_UDP_REUSEADDR,
|
||||||
UDP_MMSG_CHUNK = UV_UDP_MMSG_CHUNK
|
UDP_MMSG_CHUNK = UV_UDP_MMSG_CHUNK,
|
||||||
|
UDP_RECVMMSG = UV_UDP_RECVMMSG
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -150,7 +151,7 @@ public:
|
|||||||
* * `UDPHandle::Bind::IPV6ONLY`
|
* * `UDPHandle::Bind::IPV6ONLY`
|
||||||
* * `UDPHandle::Bind::UDP_PARTIAL`
|
* * `UDPHandle::Bind::UDP_PARTIAL`
|
||||||
* * `UDPHandle::Bind::REUSEADDR`
|
* * `UDPHandle::Bind::REUSEADDR`
|
||||||
* * `UDPHandle::Bind::UDP_MMSG_CHUNK`
|
* * `UDPHandle::Bind::UDP_RECVMMSG`
|
||||||
*
|
*
|
||||||
* See the official
|
* See the official
|
||||||
* [documentation](http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_flags)
|
* [documentation](http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_flags)
|
||||||
@ -234,6 +235,7 @@ public:
|
|||||||
* * `UDPHandle::Bind::UDP_PARTIAL`
|
* * `UDPHandle::Bind::UDP_PARTIAL`
|
||||||
* * `UDPHandle::Bind::REUSEADDR`
|
* * `UDPHandle::Bind::REUSEADDR`
|
||||||
* * `UDPHandle::Bind::UDP_MMSG_CHUNK`
|
* * `UDPHandle::Bind::UDP_MMSG_CHUNK`
|
||||||
|
* * `UDPHandle::Bind::UDP_RECVMMSG`
|
||||||
*
|
*
|
||||||
* See the official
|
* See the official
|
||||||
* [documentation](http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_flags)
|
* [documentation](http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_flags)
|
||||||
@ -255,6 +257,7 @@ public:
|
|||||||
* * `UDPHandle::Bind::UDP_PARTIAL`
|
* * `UDPHandle::Bind::UDP_PARTIAL`
|
||||||
* * `UDPHandle::Bind::REUSEADDR`
|
* * `UDPHandle::Bind::REUSEADDR`
|
||||||
* * `UDPHandle::Bind::UDP_MMSG_CHUNK`
|
* * `UDPHandle::Bind::UDP_MMSG_CHUNK`
|
||||||
|
* * `UDPHandle::Bind::UDP_RECVMMSG`
|
||||||
*
|
*
|
||||||
* See the official
|
* See the official
|
||||||
* [documentation](http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_flags)
|
* [documentation](http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_flags)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user