dnstraverse 0.1.6 → 0.1.7

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.
data/bin/dnstraverse CHANGED
@@ -118,7 +118,7 @@ options[:allstats] = false
118
118
  options[:saveobjects] = false
119
119
  options[:fast] = true
120
120
  options[:udpsize] = 2048
121
- options[:maxdepth] = 10
121
+ options[:maxdepth] = 20
122
122
  options[:retries] = 2
123
123
  options[:results] = true
124
124
  options[:summary_results] = true
@@ -135,7 +135,7 @@ opts.on("-t", "--type TYPE", Dnsruby::Types.constants,
135
135
  opts.on("--udp-size SIZE", "UDP packet size (default 2048). Set to 512 to turn off EDNS0.") { |o| options[:udpsize] = o }
136
136
  opts.on("--allow-tcp", "Try using tcp if udp truncated (default true)") { |o| options[:allow_tcp] = o }
137
137
  opts.on("--always-tcp", "Always use tcp (default false)") { |o| options[:always_tcp] = o }
138
- opts.on("--max-depth DEPTH", "Maximum traversal depth (default 10)") { |o| options[:maxdepth] = o }
138
+ opts.on("--max-depth DEPTH", "Maximum traversal depth (default 20)") { |o| options[:maxdepth] = o }
139
139
  opts.on("--retries TIMES", "Number of 2s retries before timing out (default 2)") { |o| options[:retries] = o }
140
140
  opts.on("--[no-]follow-aaaa", "Only follow AAAA records for referrals (default false)") { |o| options[:follow_aaaa] = o }
141
141
  opts.on("--[no-]root-aaaa", "Look for IPv6 addresses for root servers (default false)") { |o| options[:root_aaaa] = o }
@@ -2,7 +2,7 @@ module DNSTraverse
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- PATCH = 6
5
+ PATCH = 7
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnstraverse
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 6
10
- version: 0.1.6
9
+ - 7
10
+ version: 0.1.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - James Ponder