aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dfilter/README.dfilter
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-06-17 12:04:30 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-06-17 12:04:30 +0000
commit9b67217fb5926fe8cd8f47128571d4d1d35fa8b0 (patch)
tree2b80d17df1e66f53bd215b6903a1aa29fa3c927d /epan/dfilter/README.dfilter
parent0c222fdbd0d6b7dac68a61d42a1bb59efb1a4465 (diff)
ethereal to wireshark changes
svn path=/trunk/; revision=18499
Diffstat (limited to 'epan/dfilter/README.dfilter')
-rw-r--r--epan/dfilter/README.dfilter10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dfilter/README.dfilter b/epan/dfilter/README.dfilter
index 483c7e5a52..f7c60e6b32 100644
--- a/epan/dfilter/README.dfilter
+++ b/epan/dfilter/README.dfilter
@@ -70,7 +70,7 @@ Answer:
How to add an operator FOO to the display filter language?
==========================================================
-Go to ethereal/epan/dfilter/
+Go to wireshark/epan/dfilter/
Edit grammar.lemon and add the operator. Add the operator FOO and the test logic (defining TEST_OP_FOO).
@@ -88,7 +88,7 @@ Edit dfvm.c and add ANY_FOO to dfvm_dump() (for the dftest display filter test b
Edit semcheck.c and look at the check_relation_XXX() methods if they still apply to the foo operator; if not, amend the code. Start from the check_test() method to discover the logic.
-Go to ethereal/epan/ftypes/
+Go to wireshark/epan/ftypes/
Edit ftypes.h and declare the fvalue_foo(), ftype_can_foo() and fvalue_foo() methods. Add the cmp_foo() method to the struct _ftype_t.
@@ -100,8 +100,8 @@ Edit all ftype-*.c files and add the required fvalue_foo() methods.
This is the point where you should be able to compile without errors in wireshark/epan/ftypes/. If not, first fix the errors.
-Go to ethereal/epan/ and run make. If this one succeeds, then we're almost done as no errors should occur here.
+Go to wireshark/epan/ and run make. If this one succeeds, then we're almost done as no errors should occur here.
-Go to ethereal/ and run make. One thing to do is make dftest and see if you can construct valid display filters with your new operator. Or you may want to move directly to the generation of ethereal.
+Go to wireshark/ and run make. One thing to do is make dftest and see if you can construct valid display filters with your new operator. Or you may want to move directly to the generation of wireshark.
-Look also at ethereal/gtk/dfilter_expr_dlg.c and edit the display filter expression generator.
+Look also at wireshark/gtk/dfilter_expr_dlg.c and edit the display filter expression generator.