* 'h->len' is the length of the packet off the wire, and 'h->caplen'
* is the number of bytes actually captured.
*/
-u_int
+void
token_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_char *p)
{
- ndo->ndo_protocol = "token_if";
- return (token_print(ndo, p, h->len, h->caplen));
+ ndo->ndo_protocol = "token";
+ ndo->ndo_ll_hdr_len += token_print(ndo, p, h->len, h->caplen);
}