Browse Source

Update config under tests/ folder

Fix tests by using "local" setting instead of "local_address" in config.

This is mentioned in:
- https://github.com/shadowsocks/shadowsocks-libev/issues/247
pull/2087/head
Roger Shimizu 7 years ago
parent
commit
44c557c170
8 changed files with 8 additions and 8 deletions
  1. 2
      tests/aes-ctr.json
  2. 2
      tests/aes-gcm.json
  3. 2
      tests/aes.json
  4. 2
      tests/chacha20-ietf-poly1305.json
  5. 2
      tests/chacha20-ietf.json
  6. 2
      tests/chacha20.json
  7. 2
      tests/rc4-md5.json
  8. 2
      tests/salsa20.json

2
tests/aes-ctr.json

@ -5,6 +5,6 @@
"password":"aes_password", "password":"aes_password",
"timeout":60, "timeout":60,
"method":"aes-256-ctr", "method":"aes-256-ctr",
"local_address":"127.0.0.1",
"local":"127.0.0.1",
"fast_open":false "fast_open":false
} }

2
tests/aes-gcm.json

@ -5,6 +5,6 @@
"password":"aes_password", "password":"aes_password",
"timeout":60, "timeout":60,
"method":"aes-256-gcm", "method":"aes-256-gcm",
"local_address":"127.0.0.1",
"local":"127.0.0.1",
"fast_open":false "fast_open":false
} }

2
tests/aes.json

@ -5,6 +5,6 @@
"password":"aes_password", "password":"aes_password",
"timeout":60, "timeout":60,
"method":"aes-256-cfb", "method":"aes-256-cfb",
"local_address":"127.0.0.1",
"local":"127.0.0.1",
"fast_open":false "fast_open":false
} }

2
tests/chacha20-ietf-poly1305.json

@ -5,6 +5,6 @@
"password":"salsa20_password", "password":"salsa20_password",
"timeout":60, "timeout":60,
"method":"chacha20-ietf-poly1305", "method":"chacha20-ietf-poly1305",
"local_address":"127.0.0.1",
"local":"127.0.0.1",
"fast_open":false "fast_open":false
} }

2
tests/chacha20-ietf.json

@ -5,6 +5,6 @@
"password":"salsa20_password", "password":"salsa20_password",
"timeout":60, "timeout":60,
"method":"chacha20-ietf", "method":"chacha20-ietf",
"local_address":"127.0.0.1",
"local":"127.0.0.1",
"fast_open":false "fast_open":false
} }

2
tests/chacha20.json

@ -5,6 +5,6 @@
"password":"chacha20_password", "password":"chacha20_password",
"timeout":60, "timeout":60,
"method":"chacha20", "method":"chacha20",
"local_address":"127.0.0.1",
"local":"127.0.0.1",
"fast_open":false "fast_open":false
} }

2
tests/rc4-md5.json

@ -5,6 +5,6 @@
"password":"aes_password", "password":"aes_password",
"timeout":60, "timeout":60,
"method":"rc4-md5", "method":"rc4-md5",
"local_address":"127.0.0.1",
"local":"127.0.0.1",
"fast_open":false "fast_open":false
} }

2
tests/salsa20.json

@ -5,6 +5,6 @@
"password":"salsa20_password", "password":"salsa20_password",
"timeout":60, "timeout":60,
"method":"salsa20", "method":"salsa20",
"local_address":"127.0.0.1",
"local":"127.0.0.1",
"fast_open":false "fast_open":false
} }
Loading…
Cancel
Save