jkulubya / SoupBinTCP.NET

Implementation of the SoupBinTCP network protocol for .NET
Apache License 2.0
12 stars 8 forks source link

Heartbeat message send an 'R' #2

Open BrianARice opened 3 years ago

BrianARice commented 3 years ago

The idle write heartbeat send a 1 byte message that contains an 'R'.

I believe that the Nasdaq spec indicates that this should send an 'H'.

In ClientHeartbeat.cs I changed:

        const char type = 'R';

to const char type = 'H';