Differences From Artifact [f77640a093]:
- File src/query.cr — part of check-in [baf27b579c] at 2021-03-04 01:03:18 on branch trunk — Initial work on sending a query (user: js, size: 194) [annotate] [blame] [check-ins using]
To Artifact [67a7ba4afc]:
- File src/query.cr — part of check-in [c210ddc089] at 2021-03-04 02:09:32 on branch trunk — Some cleanups (user: js, size: 240) [annotate] [blame] [check-ins using]
1 2 3 4 5 | require "./dns_class" require "./rr_type" module AsyncDNS class Query | | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | require "./dns_class" require "./rr_type" module AsyncDNS class Query getter name : String getter class : DNSClass getter type : RRType def initialize(@name : String, @class : DNSClass, @type : RRType) end end end |