aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-11-22 06:24:56 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-11-22 06:24:56 +0000
commit4564f849c6de7591b60756378316f46f29c1d163 (patch)
treeed13166754e04deb5f4d93f80a6b7e5bb4dce422 /print.h
parenta2c7358d7a7c921bb5ea75c94d14eac86da06315 (diff)
A "character encoding" variable is now set per packet. The existence
of SNA in a packet changes the character encoding from the default ASCII to EBCDIC. The hex-printing routines in the GUI code and in the printing code convert to EBCDIC if appropriate. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1089 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'print.h')
-rw-r--r--print.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/print.h b/print.h
index 8e87820ea1..268e2f169f 100644
--- a/print.h
+++ b/print.h
@@ -1,7 +1,7 @@
/* print.h
* Definitions for printing packet analysis trees.
*
- * $Id: print.h,v 1.14 1999/10/30 06:41:36 guy Exp $
+ * $Id: print.h,v 1.15 1999/11/22 06:24:41 gram Exp $
*
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
*
@@ -50,6 +50,6 @@ void print_file(FILE* fh, const char* filename);
void proto_tree_print(gboolean print_one_packet, print_args_t *print_args,
GNode *protocol_tree, const u_char *pd, frame_data *fd, FILE *fh);
void print_hex_data(FILE *fh, register const u_char *cp,
- register u_int length);
+ register u_int length, char_enc encoding);
#endif /* print.h */