Add VN and new command line syntax to USAGE (#73)

Co-authored-by: Matt Olson <maolson@ntdev.microsoft.com>
This commit is contained in:
Matt Olson 2023-06-08 15:46:37 -07:00 коммит произвёл GitHub
Родитель e387fbe69d
Коммит 2449cb3d71
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -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"