diff options
author | Yawning Angel <yawning@schwanenlied.me> | 2014-05-13 09:56:25 +0000 |
---|---|---|
committer | Yawning Angel <yawning@schwanenlied.me> | 2014-05-13 09:56:25 +0000 |
commit | 64212e10299951efedb5637d8a137b51172bba8a (patch) | |
tree | 632e6a71e003a57b0e7be36ea7ed7283518041ae | |
parent | 8daf42a13e3cfc92cfc68ac50bf9de2c20bcb823 (diff) |
Add vim modelines to some files (No functional changes).
-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 : */ |