summaryrefslogtreecommitdiff
path: root/wiretap/k12.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-05-08 22:59:19 -0400
committerMichael Mann <mmann78@netscape.net>2014-05-09 03:04:39 +0000
commit1abeb277f5e6bd27fbaebfecc8184e37ba9d008a (patch)
tree8cc6eaa5a6982454a00adc600fa4aab02bec3d73 /wiretap/k12.h
parentaa3a968eb6e85c47014a4cec4a2b955357b0e77f (diff)
downloadwireshark-1abeb277f5e6bd27fbaebfecc8184e37ba9d008a.tar.gz
Refactor Wiretap
Start of refactoring Wiretap and breaking structures down into "generally useful fields for dissection" and "capture specific". Since this in intended as a "base" for Wiretap and Filetap, the "wft" prefix is used for "common" functionality. The "architectural" changes can be found in cfile.h, wtap.h, wtap-int.h and (new file) wftap-int.h. Most of the other (painstaking) changes were really just the result of compiling those new architecture changes. bug:9607 Change-Id: Ife858a61760d7a8a03be073546c0e7e582cab2ae Reviewed-on: https://code.wireshark.org/review/1485 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'wiretap/k12.h')
-rw-r--r--wiretap/k12.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/wiretap/k12.h b/wiretap/k12.h
index 64a46f0d77..675dfc3d9f 100644
--- a/wiretap/k12.h
+++ b/wiretap/k12.h
@@ -24,12 +24,12 @@
#include <glib.h>
#include <wtap.h>
-int k12_open(wtap *wth, int *err, gchar **err_info);
+int k12_open(wftap *wfth, int *err, gchar **err_info);
int k12_dump_can_write_encap(int encap);
-gboolean k12_dump_open(wtap_dumper *wdh, int *err);
-int k12text_open(wtap *wth, int *err, gchar **err_info _U_);
+gboolean k12_dump_open(wftap_dumper *wdh, int *err);
+int k12text_open(wftap *wfth, int *err, gchar **err_info _U_);
int k12text_dump_can_write_encap(int encap);
-gboolean k12text_dump_open(wtap_dumper *wdh, int *err);
+gboolean k12text_dump_open(wftap_dumper *wdh, int *err);
#endif