Module: Ronin::DNS::Proxy
- Defined in:
- lib/ronin/dns/proxy.rb,
lib/ronin/dns/proxy/rule.rb,
lib/ronin/dns/proxy/server.rb,
lib/ronin/dns/proxy/version.rb more...
Overview
Namespace for ronin-dns-proxy
.
Defined Under Namespace
Constant Summary collapse
- VERSION =
ronin-dns-proxy version
'0.1.0'
Class Method Summary collapse
-
.run(host, port, **kwargs) {|server| ... } ⇒ Object
Starts a new DNS proxy listening on the given host and port.
Class Method Details
.run(host, port, **kwargs) {|server| ... } ⇒ Object
Starts a new DNS proxy listening on the given host and port.
62 63 64 65 |
# File 'lib/ronin/dns/proxy.rb', line 62 def self.run(host,port,**kwargs,&block) server = Server.new(host,port,**kwargs,&block) server.run end |