-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the Message buf should be larger than 65536 #119
Labels
Comments
Thanks for pointing this out. Yeah this seems to be a bug with the way that we are updating the ICMP message field, will submit a fix soon. |
This should be fixed in the lasted release, you can download it here. |
RecieveBuffer is now set to max ICMP size, closing this for now 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the Message buf should be larger than 65536,otherwise if -s 2000 then System.ArgumentException.
The max ICMP pkg is 65536. So just set
public byte[] Message = new byte[80000];
at line 39,ICMP.cs
The text was updated successfully, but these errors were encountered: