- 4.0.8:
- Bug Fix: Command does not respect options with
-v/--version
and-h/--help
. ( #80 )
- Bug Fix: Command does not respect options with
- 4.0.7:
- Bug Fix: Remove unsupported type hints in lower version of Python. ( #79 )
- 4.0.6:
- Bug Fix: Type hint and comments refines. ( #78 )
- 4.0.5:
- Bug Fix: Type hint refines. ( #78 )
- 4.0.4:
- Improvement: Replace setup.py by pyproject.toml
- 4.0.2:
- Bug Fix: Arg
src
inverbose_ping
should besrc_addr
. ( #57 )
- Bug Fix: Arg
- 4.0.1:
- Bug Fix:
message
should be the first argument in ping3.errors. ( #55 )
- Bug Fix:
- 4.0.0:
- Feature: Now errors
TimeToLiveExpired
,DestinationUnreachable
andDestinationHostUnreachable
haveip_header
andicmp_header
attached. ( #48 )
- Feature: Now errors
- 3.0.1:
- Bug Fix:
verbose_ping
prints proper message on error.
- Bug Fix:
- 3.0.0:
- Backward Compatibility: Only Command-line options changed, now the options is more like
ping
on macOS and Linux.-w
/--wait
->-t
/--timeout
.-t
/--ttl
->-T
/--ttl
.-l
/--load
->-s
/--size
.
- Improvement: 2 command-line options now have short forms.
-D
is added as the short form of--debug
.-E
is added as the short form of--exceptions
.
- Feature: Use new command-line option
-S
/--src
to set source addresssrc_addr
.
- Backward Compatibility: Only Command-line options changed, now the options is more like
- 2.9.3:
- Bug Fix: Set packet receive buffer size to 1500. ( #40 )
- 2.9.2:
- Improvement: Converted to a proper package. ( #38 #39 )
- 2.9.1:
- Bug Fix: macOS is not treated as Linux now.
- 2.9.0:
- Feature: Support root-less ICMP pings on Linux. ( #10 )
- 2.8.1:
- Improvement: Checksum calculation is faster.
- 2.8.0:
- Feature: Now support endless ping, using
ping3 -c 0 example.com
with a count of 0 orping3.verbose_ping('example.com', count=0)
to start, usingctrl + c
to stop.
- Feature: Now support endless ping, using
- 2.7.0:
- Feature: Using
SOCK_DGRAM
instead ofSOCK_RAW
on macOS. According to this,SOCK_DGRAM
can be sent by standard user on macOS.
- Feature: Using
- 2.6.6:
- Bug Fix:
setsockopt
error forSOL_IP.IP_TTL
on windows. ( #28 )
- Bug Fix:
- 2.6.5:
- Bug Fix: When multi-processing or multi-threading, icmp_id will no longer collision. ( #23 )
- 2.6.1:
- Feature: Add network interface binding support for Linux. ( #22 )
- 2.5.1:
- Features:
- Add interval support to
ping3.verbose_ping()
. ( #17 ) - Add
-i/--interval
argument for interval support in command-line.
- Add interval support to
- Features:
- 2.4.7:
- Bug Fix: Input parameter
size
inping()
should not include ICMP_Header size. ( #21 )
- Bug Fix: Input parameter
- 2.4.4:
- Bug Fix: When there are a lot of incoming packets, and the destination address has no response,
ping()
never return. ( #14 )
- Bug Fix: When there are a lot of incoming packets, and the destination address has no response,
- 2.4.0:
- Feature: Return False if HostUnknown error raised (instead of print info to screen).
- Improvement: Increase usability of errors and provide a more precisely text.
- 2.3.1:
- Features:
- Add
--debug
argument for DEBUG mode in command-line. - Add
--exceptions
argument for EXCEPTIONS mode in command-line.
- Add
- Features:
- 2.2.3:
- Feature: Add command-line mode.
- 2.0.1:
- Features:
- Add support of ICMP Payload size.
- Add support of EXCEPTIONS mode.
- Add support of DEBUG mode.
- Features:
- 1.2.1:
- Feature: Add support for multiple interfaces. Use
ping(..., src_addr="INTERFACE IP")
- Feature: Add support for multiple interfaces. Use
- 1.1.0:
- Improvement: Update tests and PyPI info.