14 lines
283 B
C#
14 lines
283 B
C#
namespace MxGateway.Server.Workers;
|
|
|
|
public enum WorkerFrameProtocolErrorCode
|
|
{
|
|
Unknown = 0,
|
|
InvalidConfiguration = 1,
|
|
EndOfStream = 2,
|
|
MalformedLength = 3,
|
|
MessageTooLarge = 4,
|
|
InvalidEnvelope = 5,
|
|
ProtocolVersionMismatch = 6,
|
|
SessionMismatch = 7,
|
|
}
|