X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/9545306cc57d5f974c5c5a618fd4ef6866d22e2f..b51a0dafc7861eb31d21524ec067d7c529a664b8:/tcpdump.c diff --git a/tcpdump.c b/tcpdump.c index 29888ce7..a4403370 100644 --- a/tcpdump.c +++ b/tcpdump.c @@ -1,4 +1,4 @@ -/* +/* * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000 * The Regents of the University of California. All rights reserved. * @@ -1864,6 +1864,8 @@ main(int argc, char **argv) ndo->ndo_packettype = PT_SOMEIP; else if (ascii_strcasecmp(optarg, "domain") == 0) ndo->ndo_packettype = PT_DOMAIN; + else if (ascii_strcasecmp(optarg, "quic") == 0) + ndo->ndo_packettype = PT_QUIC; else error("unknown packet type `%s'", optarg); break;