diff options
author | Michal Labedzki <michal.labedzki@tieto.com> | 2014-01-18 15:20:02 +0100 |
---|---|---|
committer | Evan Huus <eapache@gmail.com> | 2014-02-25 17:43:13 +0000 |
commit | 579e7e19ce8e5f1a6e16b75f130ad4b001157ca5 (patch) | |
tree | 423547b0256e93647f98710cf14e15e112f7f73f /reordercap.c | |
parent | b6aae8d5c470aa681b70f33cad064dbb7045b3b7 (diff) | |
download | wireshark-579e7e19ce8e5f1a6e16b75f130ad4b001157ca5.tar.gz wireshark-579e7e19ce8e5f1a6e16b75f130ad4b001157ca5.tar.bz2 wireshark-579e7e19ce8e5f1a6e16b75f130ad4b001157ca5.zip |
Wireshark: Add option to choose format type of capture file
The best heuristic can fail, so add possibility to manually choose
capture file format type, so not correctly recognize file format can be
loaded in Wireshark.
On the other side now it is possible to open capture file
as file format to be dissected.
Change-Id: I5a9f662b32ff7e042f753a92eaaa86c6e41f400a
Reviewed-on: https://code.wireshark.org/review/16
Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Reviewed-by: Hadriel Kaplan <hadrielk@yahoo.com>
Reviewed-by: Evan Huus <eapache@gmail.com>
Tested-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'reordercap.c')
-rw-r--r-- | reordercap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/reordercap.c b/reordercap.c index 57741e9cea..b9c0763f8a 100644 --- a/reordercap.c +++ b/reordercap.c @@ -221,8 +221,10 @@ int main(int argc, char *argv[]) exit(1); } + init_open_routines(); + /* Open infile */ - wth = wtap_open_offline(infile, &err, &err_info, TRUE); + wth = wtap_open_offline(infile, WTAP_TYPE_AUTO, &err, &err_info, TRUE); if (wth == NULL) { fprintf(stderr, "reordercap: Can't open %s: %s\n", infile, wtap_strerror(err)); |