Browse Source

clarified debug message on unknown ether type (#620)

pull/624/head
Logan oos Even 4 years ago
committed by GitHub
parent
commit
89052c24d5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/network_traffic_filter.c

2
src/network_traffic_filter.c

@ -156,7 +156,7 @@ void collect_packet_info (packet_address_proto_info_t* out_info, unsigned char *
out_info->proto = FPP_UNKNOWN;
break;
default:
printf("EtherType 0x%04X", ether_type);
traceEvent(TRACE_DEBUG, "collect_packet_info stumbled across the unknown ether type 0x%04X", ether_type);
};
}

Loading…
Cancel
Save