module Async::DNS

Copyright, 2009, 2012, by Samuel G. D. Williams. <www.codeotaku.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright, 2009, 2012, by Samuel G. D. Williams. <www.codeotaku.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Constants

DecodeError
Message

The DNS message container.

UDP_TRUNCATION_SIZE
VERSION

Public Class Methods

address_family(host) click to toggle source
# File lib/async/dns/transport.rb, line 28
def self.address_family(host)
        return IPAddr.new(host).family
end
chunked(string, chunk_size = 255) click to toggle source

Produces an array of arrays of binary data with each sub-array a maximum of chunk_size bytes.

# File lib/async/dns/chunked.rb, line 23
def self.chunked(string, chunk_size = 255)
        chunks = []
        
        offset = 0
        while offset < string.bytesize
                chunks << string.byteslice(offset, chunk_size)
                offset += chunk_size
        end
        
        return chunks
end
decode_message(data) click to toggle source

Decodes binary data into a {Message}.

# File lib/async/dns/message.rb, line 36
def self.decode_message(data)
        # Otherwise the decode process might fail with non-binary data.
        if data.respond_to? :force_encoding
                data.force_encoding("BINARY")
        end
        
        begin
                return Message.decode(data)
        rescue DecodeError
                raise
        rescue StandardError => error
                new_error = DecodeError.new(error.message)
                new_error.set_backtrace(error.backtrace)
                
                raise new_error
        end
end