void
proto_register_ged125(void)
//taken from the acap
dissector
{
static hf_register_info hf[] =
{
{ &hf_ged125_response,
{ "Response", "ged125.response",
FT_BOOLEAN, BASE_NONE, NULL, 0x0,
"TRUE if GED125 response", HFILL
}},
{ &hf_ged125_request,
{ "Request", "ged125.request",
FT_BOOLEAN, BASE_NONE, NULL, 0x0,
"TRUE if GED125 request", HFILL
}}
};
static gint *ett[] = {
&ett_ged125,
&ett_ged125_reqresp,
};
proto_ged125 = proto_register_protocol("ged125", "ged125", "ged125"); <---------------It doesn't like the first "ged125" or anything for
that matter
proto_register_field_array(proto_ged125, hf,
array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
}