aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/file_access.c
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2021-04-18 20:15:23 -0700
committerGuy Harris <gharris@sonic.net>2021-05-11 07:40:51 +0000
commitbc8bb0152ef254ccd75bb4a51502c6aadb492afa (patch)
tree32180cf6eef825982afa021b60ae66f365afa321 /wiretap/file_access.c
parent3fb0a463197c024233bfaf9b0f5d37e9f911a1b6 (diff)
commview: add support for newer NCFX file format.
Diffstat (limited to 'wiretap/file_access.c')
-rw-r--r--wiretap/file_access.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/wiretap/file_access.c b/wiretap/file_access.c
index 94842626c2..e549f99890 100644
--- a/wiretap/file_access.c
+++ b/wiretap/file_access.c
@@ -144,7 +144,8 @@ static const struct file_extension_info file_type_extensions_base[] = {
{ "Savvius *Peek", TRUE, "pkt;tpc;apc;wpz" },
{ "Catapult DCT2000 trace (.out format)", TRUE, "out" },
{ "Micropross mplog", TRUE, "mplog" },
- { "TamoSoft CommView", TRUE, "ncf" },
+ { "TamoSoft CommView NCF", TRUE, "ncf" },
+ { "TamoSoft CommView NCFX", TRUE, "ncfx" },
{ "Symbian OS btsnoop", TRUE, "log" },
{ "XML files (including Gammu DCT3 traces)", TRUE, "xml" },
{ "macOS PacketLogger", TRUE, "pklg" },
@@ -421,7 +422,8 @@ static const struct open_info open_info_base[] = {
{ "TCPIPtrace (VMS)", OPEN_INFO_HEURISTIC, vms_open, "txt", NULL, NULL },
{ "CoSine IPSX L2 capture", OPEN_INFO_HEURISTIC, cosine_open, "txt", NULL, NULL },
{ "Bluetooth HCI dump", OPEN_INFO_HEURISTIC, hcidump_open, NULL, NULL, NULL },
- { "TamoSoft CommView", OPEN_INFO_HEURISTIC, commview_open, "ncf", NULL, NULL },
+ { "TamoSoft CommView NCF", OPEN_INFO_HEURISTIC, commview_ncf_open, "ncf", NULL, NULL },
+ { "TamoSoft CommView NCFX", OPEN_INFO_HEURISTIC, commview_ncfx_open, "ncfx", NULL, NULL },
{ "NetScaler", OPEN_INFO_HEURISTIC, nstrace_open, "cap", NULL, NULL },
{ "Android Logcat Binary format", OPEN_INFO_HEURISTIC, logcat_open, "logcat", NULL, NULL },
{ "Android Logcat Text formats", OPEN_INFO_HEURISTIC, logcat_text_open, "txt", NULL, NULL },