hoptracker 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -0
  3. data/lib/hoptracker/prober.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b2d45f18ef14df49e8ca3a2213147a84da7f846e7a139057eea1425ba605472
4
- data.tar.gz: e1b54172ac32ed799919288f81e12f2d9b196e9c5dc88e55a53952994417a9a3
3
+ metadata.gz: e943633142712cddfbc966d763ce5c39f8bc7e6a7ff19f3684be188607f65c19
4
+ data.tar.gz: 7753455c2d0b7da8fc1d4dd779f15a6b66394816700bbbe76ab1856c1c81b653
5
5
  SHA512:
6
- metadata.gz: a1e2035b7f493a921d8cfdb6c3770a8d8e07392bddb0d3a790f9257f4a2a9d2c45995f423c2a60883c2fb0cd2d8b3af7e3d2fcf6f2325005a122ab58c9a51aad
7
- data.tar.gz: e13cde78fb81531cc665ae319925139b973bea0ddb093e30312754c8a575e9ce2a8421079e23fb34f9601f79ffdb63b591f8722e6b0ba5d2d5c9b690f1a2589f
6
+ metadata.gz: 4bdcf2c492bd372a45b34c1b3363704d6d723a248d062565c0cfc912107055523cf5bf80299616a02fe8fe3ca0c2c8d951b48ce15909bee81ebf2ea8dff5d833
7
+ data.tar.gz: ba8e1a201c6c9ceaed1f5e9ff592e04b7bd50e3f13cc77dad975f1d51ab081b08d50f5cc9a4e0ffdf583261a297dbe339f7f14a5f4b6e9d62bca6bfde4bc399f
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # hoptracker
2
2
 
3
+ hoptracker is a paris-traceroute-like program that can discover the hops in the path, the path MTU and where it changes, measure the TTL/hop limit, guess asymmetric return paths and measure the latency to each hop.
4
+
5
+ To use hoptracker to its full extent, please use a Ruby version that has PR#9930 included on GitHub or otherwise closes bug #20258.
6
+
3
7
  hoptracker has the following range of functions:
4
8
  - Determine the hops on the path.
5
9
  - Determine the MTU of the path and where it changes.
@@ -311,7 +311,7 @@ module HopTracker
311
311
  retry
312
312
  rescue Errno::EMSGSIZE => e
313
313
  # Ignore MTU errors when sending, as we process the error later when receiving the error message
314
- warn "Failed to send probe: #{e.message} - that's okay!"
314
+ # warn "Failed to send probe: #{e.message} - that's okay!"
315
315
  end
316
316
  probes << {
317
317
  send_time: Time.now
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoptracker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marek Küthe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-21 00:00:00.000000000 Z
11
+ date: 2024-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: msgpack
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  requirements: []
92
- rubygems_version: 3.6.0.dev
92
+ rubygems_version: 3.5.6
93
93
  signing_key:
94
94
  specification_version: 4
95
95
  summary: traceroute-like program for measuring hops, path MTU, TTL and latency.