Skip to content
Closed
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,7 @@ Please see our [guidelines](CONTRIBUTING.md) for contributing to the driver.
* Vyacheslav Stroy https://github.com/kreig
* Testo test1@doramail.com
* Zhmayev Yaroslav https://github.com/salaros
* Alexey Skalozub https://github.com/pieceofsummer@gmail
* Elliott Millar https://github.com/elliott-pd

If you have contributed and we have neglected to add you to this list please contact one of the maintainers to be added to the list (with apologies).
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ internal struct KeepAliveValues
public byte[] ToBytes()
{
// set the tcp_keepalive struct at the following page for documentation of the buffer layout
/// 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
var bytes = new byte[24];
Array.Copy(BitConverter.GetBytes(OnOff), 0, bytes, 0, 8);
Array.Copy(BitConverter.GetBytes(KeepAliveTime), 0, bytes, 8, 8);
Expand Down
Loading