aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ncp-int.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-09-22 20:05:25 +0000
committerMichael Mann <mmann78@netscape.net>2015-09-22 20:06:12 +0000
commit961e0c0a25a0f1ef00448b261a1713446e110740 (patch)
treecb094091e0e0f086a857d08ba8fce4b8486bf2b2 /epan/dissectors/packet-ncp-int.h
parent9a02bd0c39ae0cf02c7cee9c00b4991f0f92adb2 (diff)
Revert "Refactor NCP Python data so that INFO column can be generated on the fly."
This reverts commit 38b6f306a70905be8b29ffaeb75288d315ff9b04. Change-Id: I6ec83b94811be7699880e9a741c68faaac175bd0 Reviewed-on: https://code.wireshark.org/review/10613 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-ncp-int.h')
-rw-r--r--epan/dissectors/packet-ncp-int.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/epan/dissectors/packet-ncp-int.h b/epan/dissectors/packet-ncp-int.h
index 9f6778afa0..816f467cac 100644
--- a/epan/dissectors/packet-ncp-int.h
+++ b/epan/dissectors/packet-ncp-int.h
@@ -34,17 +34,10 @@
typedef struct _ptvc_record ptvc_record;
typedef struct _sub_ptvc_record sub_ptvc_record;
-typedef struct {
- int *hf_ptr;
- const char *first_string;
- const char *repeat_string;
-} info_string_t;
-
struct _ptvc_record {
int *hf_ptr;
gint length;
const sub_ptvc_record *sub_ptvc_rec;
- const info_string_t *req_info_str;
unsigned int endianness;
unsigned int var_index : 2;
unsigned int repeat_index : 2;
@@ -87,6 +80,13 @@ typedef struct {
struct epan_dfilter *dfilter;
} conditional_record;
+typedef struct {
+ int *hf_ptr;
+ const char *first_string;
+ const char *repeat_string;
+} info_string_t;
+
+
struct novell_tap {
int stat;
int hdr;
@@ -113,6 +113,7 @@ typedef struct _ncp_record {
const error_equivalency *errors;
const int *req_cond_indexes;
unsigned int req_cond_size_type;
+ const info_string_t *req_info_str;
ncp_expert_handler *expert_handler_func;
} ncp_record;