rb-wartslib 0.9.12 → 0.9.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,7 +21,7 @@
21
21
  ## along with this program; if not, write to the Free Software
22
22
  ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23
23
  ##
24
- ## $Id: trace-gap-size-hist,v 1.1 2007/11/30 01:14:48 youngh Exp $
24
+ ## $Id: trace-gap-size-hist,v 1.3 2008/02/02 00:01:24 youngh Exp $
25
25
  #############################################################################
26
26
 
27
27
  require 'rubygems'
@@ -72,7 +72,7 @@ def extract_ippath(trace)
72
72
  end
73
73
  end
74
74
 
75
- retval << trace.dst if dest_response
75
+ retval << trace.dest if dest_response
76
76
  retval
77
77
  end
78
78
 
@@ -111,7 +111,7 @@ ARGV.each do |path|
111
111
  next
112
112
  end
113
113
 
114
- file.add_filters Warts::File::TRACE
114
+ file.add_filters Warts::TRACE
115
115
  file.read do |trace|
116
116
  num_traces += 1
117
117
  if $options.verbose
@@ -20,7 +20,7 @@
20
20
  ## along with this program; if not, write to the Free Software
21
21
  ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
22
  ##
23
- ## $Id: trace-timestamps-hist,v 1.1 2007/11/30 01:14:48 youngh Exp $
23
+ ## $Id: trace-timestamps-hist,v 1.2 2008/02/02 00:01:24 youngh Exp $
24
24
  ############################################################################
25
25
 
26
26
  require "rubygems"
@@ -31,7 +31,7 @@ histogram = Hash.new 0
31
31
  ARGV.each do |path|
32
32
  Warts::File.open(path) do |file|
33
33
  file.clear_all_filters
34
- file.add_filters Warts::File::TRACE
34
+ file.add_filters Warts::TRACE
35
35
 
36
36
  previous_value = nil
37
37
  while (trace = file.read)
data/bin/w2tr CHANGED
@@ -20,7 +20,7 @@
20
20
  ## along with this program; if not, write to the Free Software
21
21
  ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22
22
  ##
23
- ## $Id: w2tr,v 1.1 2007/11/30 00:02:53 youngh Exp $
23
+ ## $Id: w2tr,v 1.2 2008/02/02 00:01:24 youngh Exp $
24
24
  #############################################################################
25
25
 
26
26
  require 'rubygems'
@@ -30,7 +30,7 @@ out = Warts::File::open $stdout, "w", Warts::File::TRACEROUTE
30
30
 
31
31
  ARGV.each do |path|
32
32
  Warts::File::open(path) do |file|
33
- file.add_filters Warts::File::TRACE
33
+ file.add_filters Warts::TRACE
34
34
  file.read do |trace|
35
35
  puts
36
36
  out.write trace
data/bin/wdump CHANGED
@@ -25,7 +25,7 @@
25
25
  ## along with this program; if not, write to the Free Software
26
26
  ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27
27
  ##
28
- ## $Id: wdump,v 1.11 2007/12/08 00:43:48 youngh Exp $
28
+ ## $Id: wdump,v 1.18 2008/02/02 00:01:24 youngh Exp $
29
29
  #############################################################################
30
30
 
31
31
  require 'rubygems'
@@ -39,11 +39,12 @@ end
39
39
  def show_trace(trace)
40
40
  [
41
41
  :src,
42
- :dst,
42
+ :dest,
43
43
  :hop_count,
44
44
  :stop_reason,
45
45
  :type,
46
46
  :flags,
47
+ :flags_breakdown,
47
48
  :attempts,
48
49
  :hoplimit ,
49
50
  :gaplimit,
@@ -68,6 +69,10 @@ def show_trace(trace)
68
69
  [
69
70
  :hop_addr,
70
71
  :hop_flags,
72
+ :hop_flags_breakdown,
73
+ :hop_has_reply_ttl?,
74
+ :hop_has_tcp_reply?,
75
+ :hop_has_icmp_reply?,
71
76
  :hop_probe_id,
72
77
  :hop_probe_ttl,
73
78
  :hop_reply_ttl,
@@ -76,8 +81,15 @@ def show_trace(trace)
76
81
  :hop_icmp_type,
77
82
  :hop_icmp_code,
78
83
  :hop_tcp_flags,
84
+ :hop_tcp_flags_breakdown,
79
85
  :hop_rtt_sec,
80
- :hop_rtt_usec
86
+ :hop_rtt_usec,
87
+ :hop_reply_ipid,
88
+ :hop_reply_iptos,
89
+ :hop_next_hop_mtu,
90
+ :hop_inner_iplen,
91
+ :hop_inner_ipttl,
92
+ :hop_inner_iptos
81
93
  ].each do |name|
82
94
  print " "
83
95
  show_attr trace, name, hop, response
@@ -88,7 +100,7 @@ end
88
100
  ARGV.each do |path|
89
101
  puts "\n:::: #{path} ::::"
90
102
  Warts::File::open(path) do |file|
91
- file.add_filters Warts::File::TRACE
103
+ file.add_filters Warts::TRACE
92
104
  file.read do |trace|
93
105
  puts "=" * 70
94
106
  show_trace trace
@@ -87,6 +87,14 @@ daily files, or into separate files by the type of probing method used).
87
87
 
88
88
  <h2><a name="installation"></a>Installation</h2>
89
89
 
90
+ <p>
91
+ You don't have to download anything manually to
92
+ install <i>rb-wartslib</i>, because the gem file is already available
93
+ on the online RubyGems repository. Installation is, therefore, a
94
+ simple matter of executing RubyGem's <code>gem</code> command on your
95
+ system.
96
+ </p>
97
+
90
98
  <p>
91
99
  If <i>rb-wartslib</i> were a typical Ruby Gem, you would install it with
92
100
  </p>
@@ -123,7 +131,7 @@ Now build and install <i>rb-wartslib:</i>
123
131
 
124
132
  <pre>
125
133
  $ SCAMPER=/Users/youngh/scamper-cvs-20070523h
126
- (set the above to the directory where you built scamper)
134
+ (set the above to the <b>absolute</b> directory where you built scamper)
127
135
  $ sudo gem install rb-wartslib -- --with-scamper-include=$SCAMPER
128
136
  --with-scamper-lib=$SCAMPER
129
137
  </pre>
@@ -27,6 +27,7 @@
27
27
  <li> <a href="index.html#installation">Installation</a></li>
28
28
  <li> <a href="tutorial.html">Tutorial</a></li>
29
29
  <li> <a href="reference.html"><b>Class Reference</b></a></li>
30
+ <li> <a href="#Warts_module">&nbsp;&nbsp;&bull; Warts Module</a></li>
30
31
  <li> <a href="#File_class">&nbsp;&nbsp;&bull; Warts::File</a></li>
31
32
  <li> <a href="#Trace_class">&nbsp;&nbsp;&bull; Warts::Trace</a></li>
32
33
  <li> <a href="#List_class">&nbsp;&nbsp;&bull; Warts::List</a></li>
@@ -48,12 +49,33 @@
48
49
  <b>Under construction...</b>
49
50
  </p>
50
51
 
51
- <h2><a name="File_class"></a>Warts::File</h2>
52
+ <!--- =================================================================== --->
53
+ <!--- =================================================================== --->
54
+
55
+ <h2><a name="Warts_module"></a>Warts Module</h2>
56
+
57
+ <h3><a name="Warts_version_constants"></a>Version Constants</h3>
58
+
59
+ <dl>
60
+ <dt>WARTS_LIB_VERSION</dt>
61
+ <dd>Provides the version string of rb-wartslib (e.g.,
62
+ <code>"0.9.13"</code>).</dd>
63
+
64
+ <dt>SCAMPER_VERSION</dt>
65
+ <dd>Provides the version string of the scamper codebase used to build
66
+ rb-wartslib (e.g., <code>"20070523j"</code>).</dd>
67
+ </dd>
68
+ </dl>
52
69
 
53
- <h3><a name="File_object_types"></a>Object Type Constants</h3>
70
+ <h3><a name="Warts_type_constants"></a>Object Type Constants</h3>
54
71
 
55
- <p class="constant_desc">
56
- These constants are used to specify a filter in a call to
72
+ <p>
73
+ These constants are used in various places to identify a particular type of
74
+ Warts data object. For example, they are returned by
75
+ the <code>element_type</code> method available on all data classes in the
76
+ Warts module (e.g., <code>Warts::Trace#element_type</code>,
77
+ <code>Warts::List#element_type</code>).
78
+ These constants are also used to specify filters in a call to
57
79
  <a href="#File_add_filters_method"><code>Warts::File#add_filters</code></a>
58
80
  and related methods.
59
81
  </p>
@@ -101,9 +123,14 @@ single IPv4/IPv6 ping to a single destination.</dd>
101
123
  </dl>
102
124
 
103
125
 
104
- <h3><a name="File_object_types"></a>File Type Constants</h3>
126
+ <!--- =================================================================== --->
127
+ <!--- =================================================================== --->
105
128
 
106
- <p class="constant_desc">
129
+ <h2><a name="File_class"></a>Warts::File</h2>
130
+
131
+ <h3><a name="File_file_types"></a>File Type Constants</h3>
132
+
133
+ <p>
107
134
  These constants are used to specify the file format in a call to
108
135
  <a href="#File_open_method"><code>Warts::File.open</code></a>.
109
136
  </p>
@@ -196,7 +223,7 @@ The <code>Warts::File#read</code> method returns the next element stored in
196
223
  a warts/arts++ file. You specify the types of elements you are interested
197
224
  in (that is, to read in) with <code>Warts::File#add_filters</code>.
198
225
  The <code>count-traces</code> script above only specifies
199
- the <code>Warts::File::TRACE</code> filter, so only IPv4 and IPv6
226
+ the <code>Warts::TRACE</code> filter, so only IPv4 and IPv6
200
227
  traceroute elements are returned by <code>read</code>. These traceroute
201
228
  elements are instances of <code>Warts::Trace</code>, which provides
202
229
  numerous accessor methods for getting at both the data and the metadata of
@@ -217,10 +244,306 @@ convenience methods.
217
244
  Closes an open file.
218
245
  </p>
219
246
 
247
+
248
+ <!--- =================================================================== --->
249
+ <!--- =================================================================== --->
250
+
220
251
  <h2><a name="Trace_class"></a>Warts::Trace</h2>
221
252
 
253
+ <h3>Instance Attributes</h3>
254
+
255
+ <h4 class="method_sig"><a name="Trace_type_attribute"></a><span class="method_name">type</span></h4>
256
+
257
+ <p class="method_desc">
258
+ </p>
259
+
260
+ <h4 class="method_sig"><a name="Trace_flags_attribute"></a><span class="method_name">flags</span></h4>
261
+
262
+ <h4 class="method_sig"><a name="Trace_list_attribute"></a><span class="method_name">list</span></h4>
263
+
264
+ <p class="method_desc">
265
+ </p>
266
+
267
+ <h4 class="method_sig"><a name="Trace_cycle_attribute"></a><span class="method_name">cycle</span></h4>
268
+
269
+ <p class="method_desc">
270
+ </p>
271
+
272
+ <p class="method_desc">
273
+ </p>
274
+
275
+ <h4 class="method_sig"><a name="Trace_src_attribute"></a><span class="method_name">src</span></h4>
276
+
277
+ <p class="method_desc">
278
+ </p>
279
+
280
+ <h4 class="method_sig"><a name="Trace_dest_attribute"></a><span class="method_name">dest</span></h4>
281
+
282
+ <p class="method_desc">
283
+ </p>
284
+
285
+ <h4 class="method_sig"><a name="Trace_dest_rtt_attribute"></a><span class="method_name">dest_rtt</span></h4>
286
+
287
+ <p class="method_desc">
288
+ </p>
289
+
290
+ <h4 class="method_sig"><a name="Trace_dest_rtt_str_attribute"></a><span class="method_name">dest_rtt_str</span></h4>
291
+
292
+ <p class="method_desc">
293
+ </p>
294
+
295
+ <h4 class="method_sig"><a name="Trace_start_attribute"></a><span class="method_name">start</span></h4>
296
+
297
+ <p class="method_desc">
298
+ The timestamp (in whole seconds) of the start of the trace.
299
+ </p>
300
+
301
+ <h4 class="method_sig"><a name="Trace_start_usec_attribute"></a><span class="method_name">start_usec</span></h4>
302
+
303
+ <p class="method_desc">
304
+ The fractional component of the trace's start timestamp given as a whole
305
+ number of microseconds. This value is an integer, so half a second would
306
+ be specified with 500000. Suitably combine this value with the start
307
+ timestamp to get a microsecond-precision starting timestamp; that is,
308
+ <code>t = start + start_usec / 1e6</code> would give a precise starting
309
+ timestamp.
310
+ </p>
311
+
312
+ <h4 class="method_sig"><a name="Trace_hop_count_attribute"></a><span class="method_name">hop_count</span></h4>
313
+
314
+ <p class="method_desc">
315
+ </p>
316
+
317
+ <h4 class="method_sig"><a name="Trace_stop_reason_attribute"></a><span class="method_name">stop_reason</span></h4>
318
+
319
+ <p class="method_desc">
320
+ </p>
321
+
322
+ <h4 class="method_sig"><a name="Trace_stop_data_attribute"></a><span class="method_name">stop_data</span></h4>
323
+
324
+ <p class="method_desc">
325
+ </p>
326
+
327
+ <h4 class="method_sig"><a name="Trace_attempts_attribute"></a><span class="method_name">attempts</span></h4>
328
+
329
+ <p class="method_desc">
330
+ </p>
331
+
332
+ <h4 class="method_sig"><a name="Trace_hoplimit_attribute"></a><span class="method_name">hoplimit</span></h4>
333
+
334
+ <p class="method_desc">
335
+ </p>
336
+
337
+ <h4 class="method_sig"><a name="Trace_gaplimit_attribute"></a><span class="method_name">gaplimit</span></h4>
338
+
339
+ <p class="method_desc">
340
+ </p>
341
+
342
+ <h4 class="method_sig"><a name="Trace_firsthop_attribute"></a><span class="method_name">firsthop</span></h4>
343
+
344
+ <p class="method_desc">
345
+ </p>
346
+
347
+ <h4 class="method_sig"><a name="Trace_tos_attribute"></a><span class="method_name">tos</span></h4>
348
+
349
+ <p class="method_desc">
350
+ </p>
351
+
352
+ <h4 class="method_sig"><a name="Trace_wait_attribute"></a><span class="method_name">wait</span></h4>
353
+
354
+ <p class="method_desc">
355
+ </p>
356
+
357
+ <h4 class="method_sig"><a name="Trace_loops_attribute"></a><span class="method_name">loops</span></h4>
358
+
359
+ <p class="method_desc">
360
+ </p>
361
+
362
+ <h4 class="method_sig"><a name="Trace_probe_size_attribute"></a><span class="method_name">probe_size</span></h4>
363
+
364
+ <p class="method_desc">
365
+ </p>
366
+
367
+ <h4 class="method_sig"><a name="Trace_sport_attribute"></a><span class="method_name">sport</span></h4>
368
+
369
+ <p class="method_desc">
370
+ </p>
371
+
372
+ <h4 class="method_sig"><a name="Trace_dport_attribute"></a><span class="method_name">dport</span></h4>
373
+
374
+ <p class="method_desc">
375
+ </p>
376
+
377
+
378
+ <h3>Instance Methods</h3>
379
+
380
+ <h4 class="method_sig"><a name="Trace_src_cmp_method"></a><span class="method_name">src_cmp</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
381
+
382
+ <p class="method_desc">
383
+ </p>
384
+
385
+ <h4 class="method_sig"><a name="Trace_dest_cmp_method"></a><span class="method_name">dest_cmp</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
386
+
387
+ <p class="method_desc">
388
+ </p>
389
+
390
+ <h4 class="method_sig"><a name="Trace_cycle=_method"></a><span class="method_name">cycle=</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
391
+
392
+ <p class="method_desc">
393
+ </p>
394
+
395
+ <h4 class="method_sig"><a name="Trace_hop_exists?_method"></a><span class="method_name">hop_exists?</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
396
+
397
+ <p class="method_desc">
398
+ </p>
399
+
400
+ <h4 class="method_sig"><a name="Trace_hop_dest_response?_method"></a><span class="method_name">hop_dest_response?</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
401
+
402
+ <p class="method_desc">
403
+ </p>
404
+
405
+ <h4 class="method_sig"><a name="Trace_find_dest_response_method"></a><span class="method_name">find_dest_response</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
406
+
407
+ <p class="method_desc">
408
+ </p>
409
+
410
+ <h4 class="method_sig"><a name="Trace_complete?_method"></a><span class="method_name">complete?</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
411
+
412
+ <p class="method_desc">
413
+ </p>
414
+
415
+ <h4 class="method_sig"><a name="Trace_each_hop_method"></a><span class="method_name">each_hop</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
416
+
417
+ <p class="method_desc">
418
+ </p>
419
+
420
+ <h4 class="method_sig"><a name="Trace_each_response_method"></a><span class="method_name">each_response</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
421
+
422
+ <p class="method_desc">
423
+ </p>
424
+
425
+ <h4 class="method_sig"><a name="Trace_each_hop_and_response_method"></a><span class="method_name">each_hop_and_response</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
426
+
427
+ <p class="method_desc">
428
+ </p>
429
+
430
+ <h4 class="method_sig"><a name="Trace_dest_responded?_method"></a><span class="method_name">dest_responded?</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
431
+
432
+ <p class="method_desc">
433
+ </p>
434
+
435
+ <h4 class="method_sig"><a name="Trace_each_method"></a><span class="method_name">each</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
436
+
437
+ <p class="method_desc">
438
+ </p>
439
+
440
+ <!--- ================================================================== --->
441
+
442
+ <h4 class="method_sig"><a name="Trace_hop_addr_method"></a><span class="method_name">hop_addr</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
443
+
444
+ <p class="method_desc">
445
+ </p>
446
+
447
+ <h4 class="method_sig"><a name="Trace_hop_flags_method"></a><span class="method_name">hop_flags</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
448
+
449
+ <p class="method_desc">
450
+ </p>
451
+
452
+ <h4 class="method_sig"><a name="Trace_hop_probe_id_method"></a><span class="method_name">hop_probe_id</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
453
+
454
+ <p class="method_desc">
455
+ </p>
456
+
457
+ <h4 class="method_sig"><a name="Trace_hop_probe_ttl_method"></a><span class="method_name">hop_probe_ttl</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
458
+
459
+ <p class="method_desc">
460
+ </p>
461
+
462
+ <h4 class="method_sig"><a name="Trace_hop_reply_ttl_method"></a><span class="method_name">hop_reply_ttl</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
463
+
464
+ <p class="method_desc">
465
+ </p>
466
+
467
+ <h4 class="method_sig"><a name="Trace_hop_probe_size_method"></a><span class="method_name">hop_probe_size</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
468
+
469
+ <p class="method_desc">
470
+ </p>
471
+
472
+ <h4 class="method_sig"><a name="Trace_hop_reply_size_method"></a><span class="method_name">hop_reply_size</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
473
+
474
+ <p class="method_desc">
475
+ </p>
476
+
477
+ <h4 class="method_sig"><a name="Trace_hop_icmp_type_method"></a><span class="method_name">hop_icmp_type</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
478
+
479
+ <p class="method_desc">
480
+ </p>
481
+
482
+ <h4 class="method_sig"><a name="Trace_hop_icmp_code_method"></a><span class="method_name">hop_icmp_code</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
483
+
484
+ <p class="method_desc">
485
+ </p>
486
+
487
+ <h4 class="method_sig"><a name="Trace_hop_tcp_flags_method"></a><span class="method_name">hop_tcp_flags</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
488
+
489
+ <p class="method_desc">
490
+ </p>
491
+
492
+ <h4 class="method_sig"><a name="Trace_hop_rtt_method"></a><span class="method_name">hop_rtt</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
493
+
494
+ <p class="method_desc">
495
+ </p>
496
+
497
+ <h4 class="method_sig"><a name="Trace_hop_rtt_str_method"></a><span class="method_name">hop_rtt_str</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
498
+
499
+ <p class="method_desc">
500
+ </p>
501
+
502
+ <h4 class="method_sig"><a name="Trace_hop_rtt_sec_method"></a><span class="method_name">hop_rtt_sec</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
503
+
504
+ <p class="method_desc">
505
+ </p>
506
+
507
+ <h4 class="method_sig"><a name="Trace_hop_rtt_usec_method"></a><span class="method_name">hop_rtt_usec</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
508
+
509
+ <p class="method_desc">
510
+ </p>
511
+
512
+ <h4 class="method_sig"><a name="Trace_hop_reply_ipid_method"></a><span class="method_name">hop_reply_ipid</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
513
+
514
+ <p class="method_desc">
515
+ </p>
516
+
517
+ <h4 class="method_sig"><a name="Trace_hop_reply_iptos_method"></a><span class="method_name">hop_reply_iptos</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
518
+
519
+ <p class="method_desc">
520
+ </p>
521
+
522
+ <h4 class="method_sig"><a name="Trace_hop_next_hop_mtu_method"></a><span class="method_name">hop_next_hop_mtu</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
523
+
524
+ <p class="method_desc">
525
+ </p>
526
+
527
+ <h4 class="method_sig"><a name="Trace_hop_inner_iplen_method"></a><span class="method_name">hop_inner_iplen</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
528
+
529
+ <p class="method_desc">
530
+ </p>
531
+
532
+ <h4 class="method_sig"><a name="Trace_hop_inner_ipttl_method"></a><span class="method_name">hop_inner_ipttl</span>(<span class="method_argument">hop_index</span>, <span class="method_argument">response_index</span><code class="method_default">=0</code>)</h4>
533
+
534
+ <p class="method_desc">
535
+ </p>
536
+
537
+
538
+ <!--- =================================================================== --->
539
+ <!--- =================================================================== --->
540
+
222
541
  <h2><a name="List_class"></a>Warts::List</h2>
223
542
 
543
+
544
+ <!--- =================================================================== --->
545
+ <!--- =================================================================== --->
546
+
224
547
  <h2><a name="Cycle_class"></a>Warts::Cycle</h2>
225
548
 
226
549