Skip to content
Permalink
v0.9.0
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
39 lines (31 sloc) 737 Bytes
// OpenRDAP
// Copyright 2017 Tom Harwood
// MIT License, see the LICENSE file.
package rdap
// Nameserver represents information of a DNS nameserver.
//
// Nameserver is a topmost RDAP response object.
type Nameserver struct {
DecodeData *DecodeData
Common
Conformance []string `rdap:"rdapConformance"`
ObjectClassName string
Notices []Notice
Handle string
LDHName string `rdap:"ldhName"`
UnicodeName string
IPAddresses *IPAddressSet `rdap:"ipAddresses"`
Entities []Entity
Status []string
Remarks []Remark
Links []Link
Port43 string
Events []Event
}
// IPAddressSet is a subfield of Nameserver.
type IPAddressSet struct {
DecodeData *DecodeData
Common
V6 []string
V4 []string
}