HNTcpState contains the constants indicating the state of the TCP session.
const tsCreated = 0; const tsEstablished = 1; const tsClosed = 2;
enum HNTcpState { tsCreated = 0, tsEstablished = 1, tsClosed = 2 };
Values: