Class: Rex::Proto::DNS::Server::MockDnsClient
- Inherits:
-
Object
- Object
- Rex::Proto::DNS::Server::MockDnsClient
- Extended by:
- Forwardable
- Defined in:
- lib/rex/proto/dns/server.rb
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
22 23 24 25 26 |
# File 'lib/rex/proto/dns/server.rb', line 22 def initialize(host, port, sock) @peerhost = host @peerport = port @srvsock = sock end |
Instance Attribute Details
#peerhost ⇒ Object (readonly)
Returns the value of attribute peerhost.
13 14 15 |
# File 'lib/rex/proto/dns/server.rb', line 13 def peerhost @peerhost end |
#peerport ⇒ Object (readonly)
Returns the value of attribute peerport.
13 14 15 |
# File 'lib/rex/proto/dns/server.rb', line 13 def peerport @peerport end |
#srvsock ⇒ Object (readonly)
Returns the value of attribute srvsock.
13 14 15 |
# File 'lib/rex/proto/dns/server.rb', line 13 def srvsock @srvsock end |
Instance Method Details
#mock_dns_client? ⇒ Boolean
Test method to prevent GC/ObjectSpace abuse via class lookups
31 32 33 |
# File 'lib/rex/proto/dns/server.rb', line 31 def mock_dns_client? true end |
#write(data) ⇒ Object
35 36 37 |
# File 'lib/rex/proto/dns/server.rb', line 35 def write(data) srvsock.sendto(data, peerhost, peerport) end |