jellyfin/SocketHttpListener/Net/BoundaryType.cs
2019-01-13 20:27:29 +01:00

11 lines
246 B
C#

namespace SocketHttpListener.Net
{
internal enum BoundaryType
{
ContentLength = 0, // Content-Length: XXX
Chunked = 1, // Transfer-Encoding: chunked
Multipart = 3,
None = 4,
Invalid = 5,
}
}