mirror of
https://github.com/esiur/esiur-dart.git
synced 2025-05-06 12:02:57 +00:00
16 lines
347 B
Dart
16 lines
347 B
Dart
class IIPAuthPacketAction
|
|
{
|
|
// Authenticate
|
|
static const int AuthenticateHash = 0;
|
|
|
|
|
|
//Challenge,
|
|
//CertificateRequest,
|
|
//CertificateReply,
|
|
//EstablishRequest,
|
|
//EstablishReply
|
|
|
|
static const int NewConnection = 0x20;
|
|
static const int ResumeConnection = 0x21;
|
|
static const int ConnectionEstablished = 0x28;
|
|
} |