UNPKG
@awo00/smb2
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
0.4.8
0.4.7
0.4.3
0.4.2
A SMB2 implementation in TypeScript
github.com/awo00/smb2
awo00/smb2
@awo00/smb2
/
dist
/
protocol
/
smb2
/
HeaderFlag.d.ts
11 lines
(10 loc)
•
188 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
enum
HeaderFlag
{
Response
=
1
,
Async
=
2
,
Chained
=
4
,
Signed
=
8
,
Priority
=
16
,
DfsOperation
=
32
,
ReplayOperation
=
64
}
export
default
HeaderFlag
;