mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-21 08:57:04 +00:00
Set packet type for RAW PCAPs
This commit is contained in:
parent
bd730f31c4
commit
24398758e1
1 changed files with 12 additions and 0 deletions
|
@ -205,6 +205,18 @@ void pcap_cb(u_char *ptr, const struct pcap_pkthdr *hdr, const u_char *data) {
|
|||
|
||||
switch(pcap_if_type) {
|
||||
case DLT_RAW:
|
||||
switch(((u_int8_t)*data) >> 4) {
|
||||
case 4:
|
||||
type = ETHERTYPE_IP;
|
||||
break;
|
||||
case 6:
|
||||
type = ETHERTYPE_IPV6;
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Unknown packet type, skipping ...\n");
|
||||
return;
|
||||
}
|
||||
break;
|
||||
#ifdef DLT_LOOP
|
||||
case DLT_LOOP:
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue