commit 08647ec58034ecdc4ea60e7eb37c9e91fff784d6 Author: Daniel Martí mvdan@mvdan.cc Date: Mon Mar 16 19:43:02 2015 +0100
Run go fmt --- common/drbg/hash_drbg.go | 2 +- common/ntor/ntor.go | 1 + common/probdist/weighted_dist.go | 2 +- transports/obfs2/obfs2.go | 2 +- transports/obfs3/obfs3.go | 1 - 5 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/common/drbg/hash_drbg.go b/common/drbg/hash_drbg.go index 2cd1ec7..7feb9e8 100644 --- a/common/drbg/hash_drbg.go +++ b/common/drbg/hash_drbg.go @@ -30,8 +30,8 @@ package drbg
import ( - "encoding/hex" "encoding/binary" + "encoding/hex" "fmt" "hash"
diff --git a/common/ntor/ntor.go b/common/ntor/ntor.go index f17e464..4f6ab27 100644 --- a/common/ntor/ntor.go +++ b/common/ntor/ntor.go @@ -146,6 +146,7 @@ func NodeIDFromHex(encoded string) (*NodeID, error) {
return NewNodeID(raw) } + // Bytes returns a pointer to the raw NodeID. func (id *NodeID) Bytes() *[NodeIDLength]byte { return (*[NodeIDLength]byte)(id) diff --git a/common/probdist/weighted_dist.go b/common/probdist/weighted_dist.go index 811a8a0..5f8e88e 100644 --- a/common/probdist/weighted_dist.go +++ b/common/probdist/weighted_dist.go @@ -237,7 +237,7 @@ func (w *WeightedDist) String() string { for i, v := range w.values { p := w.weights[i] if p > 0.01 { // Squelch tiny probabilities. - buf.WriteString(fmt.Sprintf("%d: %f ", v, p)) + buf.WriteString(fmt.Sprintf("%d: %f ", v, p)) } } buf.WriteString("]") diff --git a/transports/obfs2/obfs2.go b/transports/obfs2/obfs2.go index 3490646..ad15671 100644 --- a/transports/obfs2/obfs2.go +++ b/transports/obfs2/obfs2.go @@ -46,7 +46,7 @@ import ( )
const ( - transportName = "obfs2" + transportName = "obfs2" sharedSecretArg = "shared-secret"
clientHandshakeTimeout = time.Duration(30) * time.Second diff --git a/transports/obfs3/obfs3.go b/transports/obfs3/obfs3.go index 7844443..dd9281b 100644 --- a/transports/obfs3/obfs3.go +++ b/transports/obfs3/obfs3.go @@ -351,7 +351,6 @@ func (conn *obfs3Conn) Write(b []byte) (n int, err error) { return conn.tx.Write(b) }
- var _ base.ClientFactory = (*obfs3ClientFactory)(nil) var _ base.ServerFactory = (*obfs3ServerFactory)(nil) var _ base.Transport = (*Transport)(nil)
tor-commits@lists.torproject.org