Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TlsHandshakeType.cs
Go to the documentation of this file.
1namespace System.Net.Security;
2
3internal enum TlsHandshakeType : byte
4{
5 HelloRequest = 0,
6 ClientHello = 1,
7 ServerHello = 2,
11 Certificate = 11,
14 ServerHelloDone = 14,
17 Finished = 20,
18 KeyEpdate = 24,
19 MessageHash = 254
20}