aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-01-11 13:34:05 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-01-11 13:34:05 +0000
commit3a79a595173a89cc12466cb204ff99cfa8f27fe9 (patch)
treeb3a7da3cf59fc2bef509716b94e6b6758c76942a
parent672faadc767840a352e31c3153cf184821f0dafe (diff)
Add some missing DSEType's.
svn path=/trunk/; revision=31492
-rw-r--r--asn1/dop/dop.asn5
-rw-r--r--epan/dissectors/packet-dop.c12
2 files changed, 16 insertions, 1 deletions
diff --git a/asn1/dop/dop.asn b/asn1/dop/dop.asn
index 218920eef8..ac3c34fbde 100644
--- a/asn1/dop/dop.asn
+++ b/asn1/dop/dop.asn
@@ -64,7 +64,10 @@ DSEType ::= BIT STRING {
rhob(14), -- rhob information
sa(15), -- subordinate reference to alias entry
dsSubentry(16), -- DSA Specific subentry
- familyMember(17)} -- family member
+ familyMember(17), -- family member
+ ditBridge(18), -- DIT bridge reference
+ writeableCopy(19) -- writeable copy
+}
SupplierOrConsumer ::= SET {
-- COMPONENTS OF AccessPoint, - - supplier or consumer
diff --git a/epan/dissectors/packet-dop.c b/epan/dissectors/packet-dop.c
index db122615a3..cb6fc6744d 100644
--- a/epan/dissectors/packet-dop.c
+++ b/epan/dissectors/packet-dop.c
@@ -241,6 +241,8 @@ static int hf_dop_DSEType_rhob = -1;
static int hf_dop_DSEType_sa = -1;
static int hf_dop_DSEType_dsSubentry = -1;
static int hf_dop_DSEType_familyMember = -1;
+static int hf_dop_DSEType_ditBridge = -1;
+static int hf_dop_DSEType_writeableCopy = -1;
static int hf_dop_GrantsAndDenials_grantAdd = -1;
static int hf_dop_GrantsAndDenials_denyAdd = -1;
static int hf_dop_GrantsAndDenials_grantDiscloseOnError = -1;
@@ -383,6 +385,8 @@ static const asn_namedbit DSEType_bits[] = {
{ 15, &hf_dop_DSEType_sa, -1, -1, "sa", NULL },
{ 16, &hf_dop_DSEType_dsSubentry, -1, -1, "dsSubentry", NULL },
{ 17, &hf_dop_DSEType_familyMember, -1, -1, "familyMember", NULL },
+ { 18, &hf_dop_DSEType_ditBridge, -1, -1, "ditBridge", NULL },
+ { 19, &hf_dop_DSEType_writeableCopy, -1, -1, "writeableCopy", NULL },
{ 0, NULL, 0, 0, NULL, NULL }
};
@@ -2857,6 +2861,14 @@ void proto_register_dop(void) {
{ "familyMember", "dop.familyMember",
FT_BOOLEAN, 8, NULL, 0x40,
NULL, HFILL }},
+ { &hf_dop_DSEType_ditBridge,
+ { "ditBridge", "dop.ditBridge",
+ FT_BOOLEAN, 8, NULL, 0x20,
+ NULL, HFILL }},
+ { &hf_dop_DSEType_writeableCopy,
+ { "writeableCopy", "dop.writeableCopy",
+ FT_BOOLEAN, 8, NULL, 0x10,
+ NULL, HFILL }},
{ &hf_dop_GrantsAndDenials_grantAdd,
{ "grantAdd", "dop.grantAdd",
FT_BOOLEAN, 8, NULL, 0x80,