@@ -167,20 +167,20 @@ namespace network
167
167
explicit socket_address (ADDRESS_FAMILY family) WI_NOEXCEPT;
168
168
template <typename T>
169
169
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;
176
176
#if defined(WIL_ENABLE_EXCEPTIONS)
177
- explicit socket_address (PCWSTR, unsigned short port = 0 );
177
+ explicit socket_address (PCWSTR addr , unsigned short port = 0 );
178
178
#endif
179
179
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;
184
184
185
185
void swap (socket_address&) WI_NOEXCEPT;
186
186
@@ -189,31 +189,31 @@ namespace network
189
189
void reset (ADDRESS_FAMILY family) WI_NOEXCEPT;
190
190
template <typename T>
191
191
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;
196
196
197
197
void set_address_any () WI_NOEXCEPT;
198
198
void set_address_any (ADDRESS_FAMILY family) WI_NOEXCEPT;
199
199
void set_address_loopback () WI_NOEXCEPT;
200
200
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;
203
203
204
204
#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 );
208
208
#endif
209
209
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;
213
213
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;
217
217
218
218
// format_address prints the IP address, not the scope id or port
219
219
HRESULT format_address_nothrow (socket_address_wstring& address) const WI_NOEXCEPT;
@@ -794,10 +794,7 @@ namespace network
794
794
795
795
inline void socket_address::swap (socket_address& addr) WI_NOEXCEPT
796
796
{
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);
801
798
}
802
799
803
800
inline void socket_address::reset () WI_NOEXCEPT
0 commit comments