diff options
-rw-r--r-- | obfs4.go | 2 | ||||
-rw-r--r-- | obfs4proxy/obfs4proxy.go | 2 | ||||
-rw-r--r-- | packet.go | 2 | ||||
-rw-r--r-- | utils.go | 2 | ||||
-rw-r--r-- | weighted_dist.go | 2 |
5 files changed, 10 insertions, 0 deletions
@@ -509,3 +509,5 @@ func Listen(network, laddr, nodeID, privateKey string) (net.Listener, error) { return l, nil } + +/* vim :set ts=4 sw=4 sts=4 noet : */ diff --git a/obfs4proxy/obfs4proxy.go b/obfs4proxy/obfs4proxy.go index 54faabd..ece16af 100644 --- a/obfs4proxy/obfs4proxy.go +++ b/obfs4proxy/obfs4proxy.go @@ -416,3 +416,5 @@ func main() { } } } + +/* vim :set ts=4 sw=4 sts=4 noet : */ @@ -125,3 +125,5 @@ func (c *Obfs4Conn) decodePacket(pkt []byte) error { return nil } + +/* vim :set ts=4 sw=4 sts=4 noet : */ @@ -65,3 +65,5 @@ func randRange(min, max int) int { ret := csRandInstance.Intn(r) return ret + min } + +/* vim :set ts=4 sw=4 sts=4 noet : */ diff --git a/weighted_dist.go b/weighted_dist.go index e1cc381..b165869 100644 --- a/weighted_dist.go +++ b/weighted_dist.go @@ -153,3 +153,5 @@ func (w *wDist) reset(seed []byte) error { return nil } + +/* vim :set ts=4 sw=4 sts=4 noet : */ |