From de95ac0bb3705e0827b1cc8e9060d2c1406ade78 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Fri, 1 Jun 2012 13:35:52 +0200 Subject: [PATCH] gofmt --- defaults.go | 2 +- edns.go | 8 ++++---- msg.go | 2 +- types.go | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/defaults.go b/defaults.go index 89502364..a19b8271 100644 --- a/defaults.go +++ b/defaults.go @@ -57,7 +57,7 @@ func (dns *Msg) SetUpdate(z string) { dns.MsgHdr.Id = Id() dns.MsgHdr.Response = false dns.MsgHdr.Opcode = OpcodeUpdate - dns.Compress = false // BIND9 cannot handle compression + dns.Compress = false // BIND9 cannot handle compression dns.Question = make([]Question, 1) dns.Question[0] = Question{z, TypeSOA, ClassINET} } diff --git a/edns.go b/edns.go index d50f922d..b7bf9c50 100644 --- a/edns.go +++ b/edns.go @@ -197,11 +197,11 @@ func (e *EDNS0_SUBNET) Pack() ([]byte, error) { b[3] = e.SourceScope switch e.Family { case 1: - if e.SourceNetmask > net.IPv4len * 8 { + if e.SourceNetmask > net.IPv4len*8 { return nil, errors.New("bad netmask") } ip := make([]byte, net.IPv4len) - a := e.Address.To4().Mask( net.CIDRMask(int(e.SourceNetmask), net.IPv4len * 8) ) + a := e.Address.To4().Mask(net.CIDRMask(int(e.SourceNetmask), net.IPv4len*8)) for i := 0; i < net.IPv4len; i++ { if i+1 > len(e.Address) { break @@ -210,11 +210,11 @@ func (e *EDNS0_SUBNET) Pack() ([]byte, error) { } b = append(b, ip...) case 2: - if e.SourceNetmask > net.IPv6len * 8 { + if e.SourceNetmask > net.IPv6len*8 { return nil, errors.New("bad netmask") } ip := make([]byte, net.IPv6len) - a := e.Address.Mask( net.CIDRMask(int(e.SourceNetmask), net.IPv6len * 8) ) + a := e.Address.Mask(net.CIDRMask(int(e.SourceNetmask), net.IPv6len*8)) for i := 0; i < net.IPv6len; i++ { if i+1 > len(e.Address) { break diff --git a/msg.go b/msg.go index c7bec36a..c10a4815 100644 --- a/msg.go +++ b/msg.go @@ -80,7 +80,7 @@ type MsgHdr struct { type Msg struct { MsgHdr Compress bool // If true, the message will be compressed when converted to wire format. - Size int // Number of octects in the message received from the wire. + Size int // Number of octects in the message received from the wire. RemoteAddr net.Addr // The remote address. Either the server or the client connecting. Question []Question // Holds the RR(s) of the question section. Answer []RR // Holds the RR(s) of the answer section. diff --git a/types.go b/types.go index f1305dca..eb0a939f 100644 --- a/types.go +++ b/types.go @@ -346,9 +346,9 @@ func (rr *RR_MX) Len() int { } type RR_AFSDB struct { - Hdr RR_Header - Subtype uint16 - Hostname string `dns:"cdomain-name"` + Hdr RR_Header + Subtype uint16 + Hostname string `dns:"cdomain-name"` } func (rr *RR_AFSDB) Header() *RR_Header {