Skip to content

Commit c97a150

Browse files
IPV6 => IPv6
1 parent 1555ba1 commit c97a150

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/client/RabbitMQ.Client/src/client/impl/SocketFrameHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public SocketFrameHandler(AmqpTcpEndpoint endpoint,
8585
{
8686
Endpoint = endpoint;
8787

88-
if (ShouldTryIPV6(endpoint))
88+
if (ShouldTryIPv6(endpoint))
8989
{
9090
try {
9191
m_socket = ConnectUsingIPv6(endpoint, socketFactory, connectionTimeout);
@@ -255,7 +255,7 @@ public void Flush()
255255
}
256256
}
257257

258-
private bool ShouldTryIPV6(AmqpTcpEndpoint endpoint)
258+
private bool ShouldTryIPv6(AmqpTcpEndpoint endpoint)
259259
{
260260
return (Socket.OSSupportsIPv6 && endpoint.AddressFamily != AddressFamily.InterNetwork);
261261
}

0 commit comments

Comments
 (0)