Ethereal->Wireshark

svn path=/trunk/; revision=18248
This commit is contained in:
Anders Broman 2006-05-29 20:44:06 +00:00
parent 7e68c9c370
commit 9aa99b16fe
7 changed files with 412 additions and 412 deletions

View File

@ -1,4 +1,4 @@
<? ethereal:protocol proto_name="dc" description="Dublin Core Metadata (DC)" ?>
<? wireshark:protocol proto_name="dc" description="Dublin Core Metadata (DC)" ?>
<!--
elements definitions for the Dublin Core Metadata DC schema

View File

@ -1,4 +1,4 @@
<? ethereal:protocol proto_name="itunes" hierarchy="yes" description="iTunes podCast rss elements" ?>
<? wireshark:protocol proto_name="itunes" hierarchy="yes" description="iTunes podCast rss elements" ?>
<!DOCTYPE itunes [

View File

@ -1,4 +1,4 @@
<? ethereal:protocol
<? wireshark:protocol
proto_name="reginfo"
description="Reginfo XML doc (RFC 3680)"
hierarchy="yes" ?>

View File

@ -1,4 +1,4 @@
<? ethereal:protocol proto_name="rss" hierarchy="yes" ?>
<? wireshark:protocol proto_name="rss" hierarchy="yes" ?>
<!--
this DTD is made so that wireshark can dissect RSS up to 2.0, do not try to use it for validating RSS documents

View File

@ -1,4 +1,4 @@
<? ethereal:protocol
<? wireshark:protocol
proto_name="smil"
media="application/smil"
description="Synchronized Multimedia Integration Language"

View File

@ -7,7 +7,7 @@
%{
/* dtd_parse.l
* an XML dissector for ethereal
* an XML dissector for Wireshark
* lexical analyzer for DTDs
*
* Copyright 2004, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
@ -96,8 +96,8 @@ comment_stop "-->"
start_xmlpi "<?"
location_xmlpi "ethereal:location"
protocol_xmlpi "ethereal:protocol"
location_xmlpi "wireshark:location"
protocol_xmlpi "wireshark:protocol"
get_attr_quote =[:blank:]*["]
avoid_editor_bug ["]

View File

@ -9,7 +9,7 @@
/*
* dtd_preparser.l
*
* an XML dissector for ethereal
* an XML dissector for wireshark
*
* DTD Preparser - import a dtd file into a GString
* including files, removing comments
@ -149,7 +149,7 @@ static const gchar* location(void) {
if (loc) g_free(loc);
loc = g_strdup_printf("<? ethereal:location %s:%u ?>", filename, linenum);
loc = g_strdup_printf("<? wireshark:location %s:%u ?>", filename, linenum);
return loc;
}