23 lines
615 B
C#
23 lines
615 B
C#
using EonaCat.Quic.Helpers;
|
|
using System;
|
|
|
|
namespace EonaCat.Quic.Infrastructure.Frames
|
|
{
|
|
// 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 NewConnectionIdFrame : Frame
|
|
{
|
|
public override byte Type => 0x18;
|
|
|
|
public override void Decode(ByteArray array)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override byte[] Encode()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |