summaryrefslogtreecommitdiff
path: root/print.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-06-04 07:03:57 +0000
committerGuy Harris <guy@alum.mit.edu>2002-06-04 07:03:57 +0000
commit392a7dfc04475dd440efa70ea4b786a96f282c19 (patch)
tree98dc21a0a82fcaed9cd383f9659adc50973f242a /print.h
parent1155a2fb437b43521367b7c75b9b5cb0a6a2de72 (diff)
downloadwireshark-392a7dfc04475dd440efa70ea4b786a96f282c19.tar.gz
Get rid of the "data_src" member of the "frame_data" structure; put it
in the "packet_info" structure instead, as we don't need a pointer for every single frame in the capture file, just for each frame for which we currently have an open "epan_dissect_t". svn path=/trunk/; revision=5614
Diffstat (limited to 'print.h')
-rw-r--r--print.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/print.h b/print.h
index e442688d3a..08283b8294 100644
--- a/print.h
+++ b/print.h
@@ -1,7 +1,7 @@
/* print.h
* Definitions for printing packet analysis trees.
*
- * $Id: print.h,v 1.26 2002/03/31 20:56:59 guy Exp $
+ * $Id: print.h,v 1.27 2002/06/04 07:03:47 guy Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -56,9 +56,9 @@ FILE *open_print_dest(int to_file, const char *dest);
void close_print_dest(int to_file, FILE *fh);
void print_preamble(FILE *fh, gint format);
void print_finale(FILE *fh, gint format);
-void proto_tree_print(print_args_t *print_args,
- GNode *protocol_tree, frame_data *fd, FILE *fh);
-void print_hex_data(FILE *fh, gint format, frame_data *fd);
+void proto_tree_print(print_args_t *print_args, epan_dissect_t *edt,
+ FILE *fh);
+void print_hex_data(FILE *fh, gint format, epan_dissect_t *edt);
void print_line(FILE *fh, gint format, char *line);
#endif /* print.h */