We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec6e02f commit 07f716cCopy full SHA for 07f716c
src/MongoDB.Driver.Core/Core/Connections/KeepAliveValues.cs
@@ -26,7 +26,7 @@ internal struct KeepAliveValues
26
public byte[] ToBytes()
27
{
28
// set the tcp_keepalive struct at the following page for documentation of the buffer layout
29
- /// https://msdn.microsoft.com/en-us/library/windows/desktop/dd877220(v=vs.85).aspx
+ // https://msdn.microsoft.com/en-us/library/windows/desktop/dd877220(v=vs.85).aspx
30
var bytes = new byte[24];
31
Array.Copy(BitConverter.GetBytes(OnOff), 0, bytes, 0, 8);
32
Array.Copy(BitConverter.GetBytes(KeepAliveTime), 0, bytes, 8, 8);
0 commit comments