Overview
Comment: | Some cleanups |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c210ddc089b9b0140f9aa6257c253675 |
User & Date: | js on 2021-03-04 02:09:32 |
Other Links: | manifest | tags |
Context
2021-03-05
| ||
00:59 | Initial support for sending the query check-in: b6cfd2fe24 user: js tags: trunk | |
2021-03-04
| ||
02:09 | Some cleanups check-in: c210ddc089 user: js tags: trunk | |
01:03 | Initial work on sending a query check-in: baf27b579c user: js tags: trunk | |
Changes
Modified src/query.cr from [f77640a093] to [67a7ba4afc].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + + + | require "./dns_class" require "./rr_type" module AsyncDNS class Query |
Modified src/resolver.cr from [e08367333f] to [389b0620fd].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | - + - - - + + - - - + - + | require "./rr" require "./settings" require "./response" module AsyncDNS class Resolver |
Modified src/response.cr from [96a20ec37e] to [05324bedeb].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - + + + + | require "./rr" module AsyncDNS class Response |
Modified src/rr.cr from [c7ffec3a5e] to [2fc5a6484f].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | - + + + + - + - + - - + + - + - - + + - + - - + + - + + - - + + + - + - - + + + - + - - + + - + - - + + - + + - - + + + + + + + - - + + + - + - - + + - + + + + - - - + + + - + - - + + | require "socket" module AsyncDNS abstract struct RR |
Modified src/settings.cr from [a3be16cbc5] to [5585feb972].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | + + + - - - + + + + + + - + - + - + | module AsyncDNS class Settings @local_domain : String? property static_hosts : Hash(String, Array(String)) property nameservers : Array(String) property local_domain : String? |
︙ | |||
56 57 58 59 60 61 62 | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | - + | {% else %} {% raise "Your OS is not supported by AsyncDNS" %} {% end %} @last_reload = Time.monotonic end |
︙ | |||
79 80 81 82 83 84 85 | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | - + | end addresses << address end end end |
︙ |