]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-token.c
OpenFlow: Have a function for each message type.
[tcpdump] / print-token.c
index 6a32330880863ab028dffd61318598e83119769b..38f56eae894c7553e3a71295bbd4d81c1ed23b13 100644 (file)
@@ -242,9 +242,9 @@ token_print(netdissect_options *ndo, const u_char *p, u_int length, u_int caplen
  * '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);
 }