aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/rtse
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-12-14 21:02:56 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-12-14 21:02:56 +0000
commit404b556084233771a3425f4347d9b2f4a2d0c943 (patch)
tree3a79d142c2fd214b996049fafc290d6534470787 /asn1/rtse
parent7980c9295e9cfe5f7c2dbdd3913c8c5a83dcc56b (diff)
From Grame Lunt:
Attached is a patch that updates - * DOP - This has now been successfully tested and so is now enabled by default and workaround code removed. Also now uses the correct EXPORTs from the other modules/dissectors. * X509SAT - Most of the selected attributes are now supported in addition to the DirectoryString syntax attributes. This includes restoring the correct DirectoryString syntax and also providing the basic syntaxes (e.g. OBJECT IDENTIFIER, PrintableString). The latter requires a sed line in the Makefile which I assume should be OK? Not all the SAT can be defined in x509sat - so some have been included in x509if and x509af - though x509sat.cnf contains the master list and references the other dissectors where appropriate. (I still prefer a syntax registration approach but I don't think that is going to be agreed in the short term.) * X509IF - a mechanism to register some formating, based upon the hf_index, that is used in the cnf file. * A couple of fixes identified by Stig. Note the patc for dop did not apply don't regenerate dissectors yet. svn path=/trunk/; revision=16799
Diffstat (limited to 'asn1/rtse')
-rw-r--r--asn1/rtse/packet-rtse-template.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/asn1/rtse/packet-rtse-template.c b/asn1/rtse/packet-rtse-template.c
index 27c2b9f6cb..cbe514952c 100644
--- a/asn1/rtse/packet-rtse-template.c
+++ b/asn1/rtse/packet-rtse-template.c
@@ -198,12 +198,14 @@ void proto_register_rtse(void) {
rtse_oid_dissector_table = register_dissector_table("rtse.oid", "RTSE OID Dissectors", FT_STRING, BASE_NONE);
oid_table=g_hash_table_new(g_str_hash, g_str_equal);
+ rtse_handle = find_dissector("rtse");
+ ros_handle = find_dissector("ros");
+
}
/*--- proto_reg_handoff_rtse --- */
void proto_reg_handoff_rtse(void) {
- rtse_handle = find_dissector("rtse");
- ros_handle = find_dissector("ros");
+
}