20 lines
483 B
C#
20 lines
483 B
C#
// 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.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EonaCat.Connections
|
|
{
|
|
internal enum BufferSizeMaximum
|
|
{
|
|
Minimal = 8192,
|
|
Medium = 65536,
|
|
Large = 262144,
|
|
ExtraLarge = 1048576,
|
|
}
|
|
}
|