summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asio/include/asio/ip/udp.hpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/asio/include/asio/ip/udp.hpp')
-rw-r--r--3rdparty/asio/include/asio/ip/udp.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/3rdparty/asio/include/asio/ip/udp.hpp b/3rdparty/asio/include/asio/ip/udp.hpp
index a011accaff2..796de061229 100644
--- a/3rdparty/asio/include/asio/ip/udp.hpp
+++ b/3rdparty/asio/include/asio/ip/udp.hpp
@@ -2,7 +2,7 @@
// ip/udp.hpp
// ~~~~~~~~~~
//
-// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -46,31 +46,31 @@ public:
typedef basic_endpoint<udp> endpoint;
/// Construct to represent the IPv4 UDP protocol.
- static udp v4()
+ static udp v4() ASIO_NOEXCEPT
{
return udp(ASIO_OS_DEF(AF_INET));
}
/// Construct to represent the IPv6 UDP protocol.
- static udp v6()
+ static udp v6() ASIO_NOEXCEPT
{
return udp(ASIO_OS_DEF(AF_INET6));
}
/// Obtain an identifier for the type of the protocol.
- int type() const
+ int type() const ASIO_NOEXCEPT
{
return ASIO_OS_DEF(SOCK_DGRAM);
}
/// Obtain an identifier for the protocol.
- int protocol() const
+ int protocol() const ASIO_NOEXCEPT
{
return ASIO_OS_DEF(IPPROTO_UDP);
}
/// Obtain an identifier for the protocol family.
- int family() const
+ int family() const ASIO_NOEXCEPT
{
return family_;
}
@@ -95,7 +95,7 @@ public:
private:
// Construct with a specific family.
- explicit udp(int protocol_family)
+ explicit udp(int protocol_family) ASIO_NOEXCEPT
: family_(protocol_family)
{
}