Skip to content

Commit eaf2171

Browse files
committed
Addressing additional feedback.
1 parent c96fd94 commit eaf2171

File tree

1 file changed

+27
-30
lines changed

1 file changed

+27
-30
lines changed

include/wil/network.h

+27-30
Original file line numberDiff line numberDiff line change
@@ -167,20 +167,20 @@ namespace network
167167
explicit socket_address(ADDRESS_FAMILY family) WI_NOEXCEPT;
168168
template <typename T>
169169
explicit socket_address(_In_reads_bytes_(addr_size) const SOCKADDR* addr, T addr_size) WI_NOEXCEPT;
170-
explicit socket_address(const SOCKADDR_IN*) WI_NOEXCEPT;
171-
explicit socket_address(const SOCKADDR_IN6*) WI_NOEXCEPT;
172-
explicit socket_address(const SOCKADDR_INET*) WI_NOEXCEPT;
173-
explicit socket_address(const SOCKET_ADDRESS*) WI_NOEXCEPT;
174-
explicit socket_address(const IN_ADDR*, unsigned short port = 0) WI_NOEXCEPT;
175-
explicit socket_address(const IN6_ADDR*, unsigned short port = 0) WI_NOEXCEPT;
170+
explicit socket_address(const SOCKADDR_IN* addr) WI_NOEXCEPT;
171+
explicit socket_address(const SOCKADDR_IN6* addr) WI_NOEXCEPT;
172+
explicit socket_address(const SOCKADDR_INET* addr) WI_NOEXCEPT;
173+
explicit socket_address(const SOCKET_ADDRESS* addr) WI_NOEXCEPT;
174+
explicit socket_address(const IN_ADDR* addr, unsigned short port = 0) WI_NOEXCEPT;
175+
explicit socket_address(const IN6_ADDR* addr, unsigned short port = 0) WI_NOEXCEPT;
176176
#if defined(WIL_ENABLE_EXCEPTIONS)
177-
explicit socket_address(PCWSTR, unsigned short port = 0);
177+
explicit socket_address(PCWSTR addr, unsigned short port = 0);
178178
#endif
179179

180-
bool operator==(const socket_address&) const WI_NOEXCEPT;
181-
bool operator!=(const socket_address&) const WI_NOEXCEPT;
182-
bool operator<(const socket_address&) const WI_NOEXCEPT;
183-
bool operator>(const socket_address&) const WI_NOEXCEPT;
180+
bool operator==(const socket_address& rhs) const WI_NOEXCEPT;
181+
bool operator!=(const socket_address& rhs) const WI_NOEXCEPT;
182+
bool operator<(const socket_address& rhs) const WI_NOEXCEPT;
183+
bool operator>(const socket_address& rhs) const WI_NOEXCEPT;
184184

185185
void swap(socket_address&) WI_NOEXCEPT;
186186

@@ -189,31 +189,31 @@ namespace network
189189
void reset(ADDRESS_FAMILY family) WI_NOEXCEPT;
190190
template <typename T>
191191
void reset(_In_reads_bytes_(addr_size) const SOCKADDR* addr, T addr_size) WI_NOEXCEPT;
192-
void reset(const SOCKADDR_IN*) WI_NOEXCEPT;
193-
void reset(const SOCKADDR_IN6*) WI_NOEXCEPT;
194-
void reset(const SOCKADDR_INET*) WI_NOEXCEPT;
195-
void reset(const SOCKET_ADDRESS*) WI_NOEXCEPT;
192+
void reset(const SOCKADDR_IN* addr) WI_NOEXCEPT;
193+
void reset(const SOCKADDR_IN6* addr) WI_NOEXCEPT;
194+
void reset(const SOCKADDR_INET* addr) WI_NOEXCEPT;
195+
void reset(const SOCKET_ADDRESS* addr) WI_NOEXCEPT;
196196

197197
void set_address_any() WI_NOEXCEPT;
198198
void set_address_any(ADDRESS_FAMILY family) WI_NOEXCEPT;
199199
void set_address_loopback() WI_NOEXCEPT;
200200
void set_address_loopback(ADDRESS_FAMILY family) WI_NOEXCEPT;
201-
void set_address(const IN_ADDR*) WI_NOEXCEPT;
202-
void set_address(const IN6_ADDR*) WI_NOEXCEPT;
201+
void set_address(const IN_ADDR* addr) WI_NOEXCEPT;
202+
void set_address(const IN6_ADDR* addr) WI_NOEXCEPT;
203203

204204
#if defined(WIL_ENABLE_EXCEPTIONS)
205-
void reset_address(SOCKET);
206-
void reset_address(PCWSTR);
207-
void reset_address(PCSTR);
205+
void reset_address(SOCKET s);
206+
void reset_address(PCWSTR address);
207+
void reset_address(PCSTR address);
208208
#endif
209209

210-
WI_NODISCARD HRESULT reset_address_nothrow(SOCKET) WI_NOEXCEPT;
211-
WI_NODISCARD HRESULT reset_address_nothrow(PCWSTR) WI_NOEXCEPT;
212-
WI_NODISCARD HRESULT reset_address_nothrow(PCSTR) WI_NOEXCEPT;
210+
WI_NODISCARD HRESULT reset_address_nothrow(SOCKET s) WI_NOEXCEPT;
211+
WI_NODISCARD HRESULT reset_address_nothrow(PCWSTR address) WI_NOEXCEPT;
212+
WI_NODISCARD HRESULT reset_address_nothrow(PCSTR address) WI_NOEXCEPT;
213213

214-
void set_port(USHORT) WI_NOEXCEPT;
215-
void set_scope_id(ULONG) WI_NOEXCEPT;
216-
void set_flow_info(ULONG) WI_NOEXCEPT;
214+
void set_port(USHORT port) WI_NOEXCEPT;
215+
void set_scope_id(ULONG scopeId) WI_NOEXCEPT;
216+
void set_flow_info(ULONG flowInfo) WI_NOEXCEPT;
217217

218218
// format_address prints the IP address, not the scope id or port
219219
HRESULT format_address_nothrow(socket_address_wstring& address) const WI_NOEXCEPT;
@@ -794,10 +794,7 @@ namespace network
794794

795795
inline void socket_address::swap(socket_address& addr) WI_NOEXCEPT
796796
{
797-
SOCKADDR_INET tempAddr{};
798-
::memcpy_s(&tempAddr, sizeof(tempAddr), &addr.m_sockaddr, sizeof(addr.m_sockaddr));
799-
::memcpy_s(&addr.m_sockaddr, sizeof(addr.m_sockaddr), &m_sockaddr, sizeof(m_sockaddr));
800-
::memcpy_s(&m_sockaddr, sizeof(m_sockaddr), &tempAddr, sizeof(tempAddr));
797+
wistd::swap_wil(*this, addr);
801798
}
802799

803800
inline void socket_address::reset() WI_NOEXCEPT

0 commit comments

Comments
 (0)