Browse Source

fix: remove `table` method of ss-rust shadowsocks/shadowsocks-rust#887

master
dnomd343 2 years ago
parent
commit
4459209a0e
  1. 5
      Basis/Methods.py
  2. 4
      test.py

5
Basis/Methods.py

@ -2,9 +2,8 @@
# -*- coding: utf-8 -*-
ssMethods = { # methods support of different Shadowsocks project
'ss-rust': [
'none', 'plain',
'table', 'rc4', 'rc4-md5',
'ss-rust': [ # table method removed refer to https://github.com/shadowsocks/shadowsocks-rust/issues/887
'none', 'plain', 'rc4', 'rc4-md5',
'aes-128-ccm', 'aes-256-ccm',
'aes-128-gcm', 'aes-256-gcm',
'aes-128-gcm-siv', 'aes-256-gcm-siv',

4
test.py

@ -155,6 +155,6 @@ def test_2() -> None:
loadTest(ssServer, ssClient, method, timeout)
test_1()
# test_2()
# test_1()
test_2()
# loadTest('ss-python-legacy', 'ss-python-legacy', 'salsa20-ctr', 3)

Loading…
Cancel
Save