Add VN and new command line syntax to USAGE (#73)
Co-authored-by: Matt Olson <maolson@ntdev.microsoft.com>
This commit is contained in:
Родитель
e387fbe69d
Коммит
2449cb3d71
12
src/main.c
12
src/main.c
|
@ -32,13 +32,17 @@ Issues:
|
|||
#include <winsock2.h>
|
||||
#include <netiodef.h>
|
||||
|
||||
#define USAGE \
|
||||
"etl2pcapng <infile> <outfile>\n" \
|
||||
"Converts a packet capture from etl to pcapng format.\n"
|
||||
|
||||
// Increment when adding features
|
||||
#define VERSION "1.11.0"
|
||||
|
||||
#define USAGE \
|
||||
"etl2pcapng version " VERSION "\n" \
|
||||
" Converts a packet capture from etl to pcapng format.\n" \
|
||||
"Usage:\n" \
|
||||
" etl2pcapng in.etl out.pcapng\n" \
|
||||
" or\n" \
|
||||
" etl2pcapng in.etl\n"
|
||||
|
||||
// Default extension for output files
|
||||
#define DEFAULT_OUT_FILE_EXTENSION L".pcapng"
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче