Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
miekg committed Jun 1, 2012
1 parent e747b8f commit de95ac0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion defaults.go
Expand Up @@ -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}
}
Expand Down
8 changes: 4 additions & 4 deletions edns.go
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion msg.go
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions types.go
Expand Up @@ -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 {
Expand Down

0 comments on commit de95ac0

Please sign in to comment.