22 lines
622 B
C#
22 lines
622 B
C#
using System;
|
|
|
|
namespace EonaCat.Quic.Infrastructure.Packets
|
|
{
|
|
// This file is part of the EonaCat project(s) which is released under the Apache License.
|
|
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
|
|
|
|
public class VersionNegotiationPacket : Packet
|
|
{
|
|
public override byte Type => throw new NotImplementedException();
|
|
|
|
public override void Decode(byte[] packet)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override byte[] Encode()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |