From d5a243b2ca2cdf4cd68d938580b8ef628f526fe6 Mon Sep 17 00:00:00 2001 From: vgiotsas Date: Thu, 8 Feb 2018 15:52:42 +0200 Subject: [PATCH] Fix type of Traceroute ip_path property Solves #87 --- docs/types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types.rst b/docs/types.rst index 89a2043..b9d73e6 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -95,7 +95,7 @@ size int The packet size protocol str One of ``ICMP``, ``TCP``, ``UDP`` hops list A list of :ref:`traceroute-hop` objects. If the ``parse_all_hops`` parameter is ``False``, this will only contain the last hop. total_hops int The total number of hops -ip_path list A list of dicts containing the IPs at each hop. This is just for convenience as all of these values are accessible via the :ref:`traceroute-hop` and :ref:`traceroute-packet` objects. +ip_path list A list of list containing the IPs at each hop. This is just for convenience as all of these values are accessible via the :ref:`traceroute-hop` and :ref:`traceroute-packet` objects. last_median_rtt float The median value of all RTTs from the last successful hop destination_ip_responded bool Set to ``True`` if the last hop was a response from the destination IP last_hop_responded bool Set to ``True`` if the last hop was a response at all