Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DnsSectionQuestion (0.14 sec)

  1. src/net/lookup_windows.go

    	for p := r; p != nil; p = p.Next {
    		// in case of a local machine, DNS records are returned with DNSREC_QUESTION flag instead of DNS_ANSWER
    		if p.Dw&dnsSectionMask != syscall.DnsSectionAnswer && p.Dw&dnsSectionMask != syscall.DnsSectionQuestion {
    			continue
    		}
    		if p.Type != dnstype {
    			continue
    		}
    		if !syscall.DnsNameCompare(cname, p.Name) {
    			continue
    		}
    		rec = append(rec, p)
    	}
    	return rec
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	DNS_TYPE_WINS    = 0xff01
    	DNS_TYPE_WINSR   = 0xff02
    	DNS_TYPE_NBSTAT  = 0xff01
    )
    
    const (
    	DNS_INFO_NO_RECORDS = 0x251D
    )
    
    const (
    	// flags inside DNSRecord.Dw
    	DnsSectionQuestion   = 0x0000
    	DnsSectionAnswer     = 0x0001
    	DnsSectionAuthority  = 0x0002
    	DnsSectionAdditional = 0x0003
    )
    
    type DNSSRVData struct {
    	Target   *uint16
    	Priority uint16
    	Weight   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top