This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
namespace Mono.Security.Protocol.Tls.Handshake.Client
{
// Token: 0x020000B0 RID: 176
internal class TlsServerHelloDone : HandshakeMessage
{
// Token: 0x06000691 RID: 1681 RVA: 0x00024C18 File Offset: 0x00022E18
public TlsServerHelloDone(Context context, byte[] buffer)
: base(context, HandshakeType.ServerHelloDone, buffer)
{
}
// Token: 0x06000692 RID: 1682 RVA: 0x00024C24 File Offset: 0x00022E24
protected override void ProcessAsSsl3()
{
}
// Token: 0x06000693 RID: 1683 RVA: 0x00024C28 File Offset: 0x00022E28
protected override void ProcessAsTls1()
{
}
}
}