pythonping
pythonping copied to clipboard
A simple way to ping in Python
this pr adds a "packets_lost_number" variable to a ResponseList object. this variable holds an integer number of the lost packets. closes #82
**Is your feature request related to a problem? Please describe.** problem: currently ResponseList contains packets_lost variable which contains float ratio of lost packets to all sent packets. but we can...
Hello, I'm working on a project which currently utilizes your ping program. For one function that we do we issue quite a lot of pings which we are currently doing...
Hello, is there any idea about ipv6 support? Thank you.
Is there a way ping from a explicit source to destination ?
Dear Alessandro, Very useful code, Following you from https://www.ictshore.com/python/python-ping-tutorial When you gonna make it, or add Cisco like output flag to it? It will be very more advanced if you...
It looks like the DF option is not being set (tested on Windows, verifies with Wireshark). Currently, the option set is option 10, and it is set to 1.
I've added some tests here: https://github.com/HandyMenny/pythonping/commit/a2ecdf2fbef8ffe684871d387c0c987ed9c93010 Besides the fact that they're too messy, without #66 they will fail If you don't completely agree with these changes you might as well...
**Describe the bug** The `ping()` function can't be called with a large value for `count`. It will throw an error. Setting `count` to a negative number does not result in...
All values in the struct should be unsigned. Refering to [the docs](https://docs.python.org/3/library/struct.html#format-characters) it appears the large count limitation was caused by incorrectly using signed formats for the ICMP header packing/unpacking....