0
0
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 13:21:00 +02:00

disable compression/enc

This commit is contained in:
Zack Scholl 2018-09-24 12:21:38 -07:00
parent d0e75370b2
commit 2f47dd3178

View file

@ -28,7 +28,7 @@ func sendAndReceive(t *testing.T, forceSend int, local bool) {
c := Init(true)
c.NoLocal = !local
c.ForceSend = forceSend
c.UseEncryption = false
c.UseCompression = false
c.UseEncryption = false
assert.Nil(t, c.Send(fname, "test"))
}()