Class: Rex::Proto::DNS::Server::MockDnsClient
- Inherits:
-
Object
- Object
- Rex::Proto::DNS::Server::MockDnsClient
- Defined in:
- lib/rex/proto/dns/server.rb
Overview
Cache
Instance Attribute Summary collapse
-
#peerhost ⇒ Object
readonly
Returns the value of attribute peerhost.
-
#peerport ⇒ Object
readonly
Returns the value of attribute peerport.
-
#srvsock ⇒ Object
readonly
Returns the value of attribute srvsock.
Instance Method Summary collapse
-
#initialize(host, port, sock) ⇒ MockDnsClient
constructor
Create mock DNS client.
-
#mock_dns_client? ⇒ Boolean
Test method to prevent GC/ObjectSpace abuse via class lookups.
- #write(data) ⇒ Object
Constructor Details
#initialize(host, port, sock) ⇒ MockDnsClient
Create mock DNS client
150 151 152 153 154 |
# File 'lib/rex/proto/dns/server.rb', line 150 def initialize(host, port, sock) @peerhost = host @peerport = port @srvsock = sock end |
Instance Attribute Details
#peerhost ⇒ Object (readonly)
Returns the value of attribute peerhost
143 144 145 |
# File 'lib/rex/proto/dns/server.rb', line 143 def peerhost @peerhost end |
#peerport ⇒ Object (readonly)
Returns the value of attribute peerport
143 144 145 |
# File 'lib/rex/proto/dns/server.rb', line 143 def peerport @peerport end |
#srvsock ⇒ Object (readonly)
Returns the value of attribute srvsock
143 144 145 |
# File 'lib/rex/proto/dns/server.rb', line 143 def srvsock @srvsock end |
Instance Method Details
#mock_dns_client? ⇒ Boolean
Test method to prevent GC/ObjectSpace abuse via class lookups
159 160 161 |
# File 'lib/rex/proto/dns/server.rb', line 159 def mock_dns_client? true end |
#write(data) ⇒ Object
163 164 165 |
# File 'lib/rex/proto/dns/server.rb', line 163 def write(data) srvsock.sendto(data, peerhost, peerport) end |