Ehtereal[sic] -> Wireshark. :-)

Give a little more detail in the comment in the H.248 dissector about
"MEGACO" vs. "H.248".

svn path=/trunk/; revision=20262
This commit is contained in:
Guy Harris 2007-01-02 09:20:27 +00:00
parent 44c0624bd9
commit 04ca66dfb1
3 changed files with 11 additions and 9 deletions

View File

@ -291,7 +291,7 @@ AUTHORS-SHORT-FORMAT: AUTHORS-SHORT make-authors-format.pl
#
# Build "tshark-tap-register.c", which contains a function
# "register_all_tap_listeners()"
# that calls the register routines for all tehtereal tap listeners.
# that calls the register routines for all TShark tap listeners.
#
# We do this by grepping through sources.
#

View File

@ -1782,9 +1782,10 @@ dissect_h248(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
curr_info.stat = NULL;
curr_info.par = NULL;
/* Check if it is actually a text based h248 encoding, which we call
megaco in ehtereal.
*/
/* Check if it is actually a text-based H.248 encoding, which we
dissect with the "megaco" dissector in Wireshark. (Both
encodings are MEGACO (RFC 3015) and both are H.248.)
*/
if(tvb_length(tvb)>=6){
if(!tvb_strneql(tvb, 0, "MEGACO", 6)){
static dissector_handle_t megaco_handle=NULL;

View File

@ -6363,9 +6363,10 @@ dissect_h248(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
curr_info.stat = NULL;
curr_info.par = NULL;
/* Check if it is actually a text based h248 encoding, which we call
megaco in ehtereal.
*/
/* Check if it is actually a text-based H.248 encoding, which we
dissect with the "megaco" dissector in Wireshark. (Both
encodings are MEGACO (RFC 3015) and both are H.248.)
*/
if(tvb_length(tvb)>=6){
if(!tvb_strneql(tvb, 0, "MEGACO", 6)){
static dissector_handle_t megaco_handle=NULL;
@ -7697,7 +7698,7 @@ void proto_register_h248(void) {
"", HFILL }},
/*--- End of included file: packet-h248-hfarr.c ---*/
#line 1903 "packet-h248-template.c"
#line 1904 "packet-h248-template.c"
{ &hf_h248_ctx, { "Context", "h248.ctx", FT_UINT32, BASE_HEX, NULL, 0, "", HFILL }},
{ &hf_h248_ctx_term, { "Termination", "h248.ctx.term", FT_STRING, BASE_NONE, NULL, 0, "", HFILL }},
@ -7866,7 +7867,7 @@ void proto_register_h248(void) {
&ett_h248_Value,
/*--- End of included file: packet-h248-ettarr.c ---*/
#line 1928 "packet-h248-template.c"
#line 1929 "packet-h248-template.c"
};
module_t *h248_module;