2017-08-18 21:01:11 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SockScape {
|
2017-09-01 17:10:19 +00:00
|
|
|
|
public enum kIntraSlaveId {
|
2017-08-18 21:01:11 +00:00
|
|
|
|
InitiationAttempt = 0,
|
2017-08-31 20:59:57 +00:00
|
|
|
|
KeyExchange,
|
|
|
|
|
StatusUpdate
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-01 17:10:19 +00:00
|
|
|
|
public enum kIntraMasterId {
|
|
|
|
|
KeyExchange = 1,
|
|
|
|
|
PositiveAck,
|
|
|
|
|
NegativeAck,
|
|
|
|
|
EncryptionError
|
2017-08-18 21:01:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|