Sample code for 30+ languages & platforms
Swift

DNS Query SOA Records

See more DNS Examples

Shows how to perform a DNS query to retrieve SOA records.

Note: This example requires Chilkat v9.5.0.96 or later.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    let dns = CkoDns()!

    let json = CkoJsonObject()!
    json.emitCompact = false

    success = dns.query(recordType: "SOA", domain: "x.com", answer: json)
    if success == false {
        print("\(dns.lastErrorText!)")
        return
    }

    print("\(json.emit()!)")

    // Sample response.
    // Parsing code below..

    // {
    //   "answer": {
    //     "soa": [
    //       {
    //         "name": "x.com",
    //         "ttl": 1800,
    //         "mname": "alexia.ns.cloudflare.com",
    //         "rname": "dns.cloudflare.com",
    //         "serial": -1971124188,
    //         "refresh": 10000,
    //         "retry": 2400,
    //         "expire": 604800,
    //         "minttl": 1800
    //       }
    //     ]
    //   }
    // }

    // Use this online tool to generate parsing code from sample JSON: 
    // Generate Parsing Code from JSON

    var name: String?
    var ttl: Int
    var mname: String?
    var rname: String?
    var serial: Int
    var refresh: Int
    var retry: Int
    var expire: Int
    var minttl: Int

    var i: Int = 0
    var count_i: Int = json.size(ofArray: "answer.soa").intValue
    while i < count_i {
        json.i = i
        name = json.string(of: "answer.soa[i].name")
        ttl = json.int(of: "answer.soa[i].ttl").intValue
        mname = json.string(of: "answer.soa[i].mname")
        rname = json.string(of: "answer.soa[i].rname")
        serial = json.int(of: "answer.soa[i].serial").intValue
        refresh = json.int(of: "answer.soa[i].refresh").intValue
        retry = json.int(of: "answer.soa[i].retry").intValue
        expire = json.int(of: "answer.soa[i].expire").intValue
        minttl = json.int(of: "answer.soa[i].minttl").intValue
        i = i + 1
    }


}