]>
The Tcpdump Group git mirrors - tcpdump/blob - print-unsupported.c
2 * Copyright (c) 2020 The TCPDUMP project
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code
7 * distributions retain the above copyright notice and this paragraph
8 * in its entirety, and (2) distributions including binary code include
9 * the above copyright notice and this paragraph in its entirety in
10 * the documentation or other materials provided with the distribution.
11 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
12 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
13 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 * FOR A PARTICULAR PURPOSE.
17 /* \summary: unsupported link-layer protocols printer */
23 #include "netdissect-stdinc.h"
25 #include "netdissect.h"
28 unsupported_if_print(netdissect_options
*ndo
, const struct pcap_pkthdr
*h
,
31 ndo
->ndo_protocol
= "unsupported";
32 nd_print_protocol_caps(ndo
);
33 hex_and_ascii_print(ndo
, "\n\t", p
, h
->caplen
);