sockscape/server_old/Socks/Protocols/IntraMasterIds.cs

21 lines
386 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SockScape {
public enum kIntraSlaveId {
InitiationAttempt = 0,
KeyExchange,
StatusUpdate
}
public enum kIntraMasterId {
KeyExchange = 1,
PositiveAck,
NegativeAck,
EncryptionError
}
}