mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-07 12:06:27 +00:00
Snaplen increased to the default jumbo frame size
If the snaplen is lower than the total frame length announced, ssldump won't be able to reassemble the payload. "Length mismatch" error. Tested on Ethernet uplinks supporting jumbo frame.
This commit is contained in:
parent
3d17d67ea0
commit
58bd5e795f
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ int main(argc,argv)
|
||||||
err_exit("Aborting",-1);
|
err_exit("Aborting",-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!(p=pcap_open_live(interface_name,5000,!no_promiscuous,1000,errbuf))){
|
if(!(p=pcap_open_live(interface_name,65535,!no_promiscuous,1000,errbuf))){
|
||||||
fprintf(stderr,"PCAP: %s\n",errbuf);
|
fprintf(stderr,"PCAP: %s\n",errbuf);
|
||||||
err_exit("Aborting",-1);
|
err_exit("Aborting",-1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue