feat: add directory cid type

This commit is contained in:
Derrick Hammer 2024-01-04 02:24:15 -05:00
parent 21ad88d55e
commit e19016be9d
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ const (
CIDTypeBridge CIDType = 0x3a CIDTypeBridge CIDType = 0x3a
CIDTypeEncryptedStatic CIDType = 0xae CIDTypeEncryptedStatic CIDType = 0xae
CIDTypeEncryptedDynamic CIDType = 0xad CIDTypeEncryptedDynamic CIDType = 0xad
CIDTypeDirectory CIDType = 0x5d
) )
var CIDTypeMap = map[CIDType]string{ var CIDTypeMap = map[CIDType]string{
@ -22,4 +23,5 @@ var CIDTypeMap = map[CIDType]string{
CIDTypeBridge: "Bridge", CIDTypeBridge: "Bridge",
CIDTypeEncryptedStatic: "EncryptedStatic", CIDTypeEncryptedStatic: "EncryptedStatic",
CIDTypeEncryptedDynamic: "EncryptedDynamic", CIDTypeEncryptedDynamic: "EncryptedDynamic",
CIDTypeDirectory: "Directory",
} }