2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-03 17:58:21 +00:00
This commit is contained in:
2024-06-23 14:10:44 +03:00
parent 09c730ebc4
commit 3087e0d1ad
5 changed files with 710 additions and 829 deletions

View File

@@ -1,11 +1,13 @@
import '../../Data/IntType.dart';
class IIPAuthPacketIAuthHeader
{
static int Reference = 0;
static int Destination = 1;
static int Clue = 2;
static int RequiredFormat = 3;
static int ContentFormat = 4;
static int Content = 5;
static int Timeout = 6;
}
class IIPAuthPacketIAuthHeader {
static UInt8 Reference = UInt8(0);
static UInt8 Destination = UInt8(1);
static UInt8 Clue = UInt8(2);
static UInt8 RequiredFormat = UInt8(3);
static UInt8 ContentFormat = UInt8(4);
static UInt8 Content = UInt8(5);
static UInt8 Trials = UInt8(6);
static UInt8 Issue = UInt8(7);
static UInt8 Expire = UInt8(8);
}