diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-09-09 14:32:15 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-11-01 19:54:18 +0900 |
commit | bf74aa095adf8d0a3b4144b29b2d7a48fe4e02b2 (patch) | |
tree | d3d58b31457af827cecf439b902e14b62d41c129 /test/test_python.py | |
parent | a88471fc43a8500f73cd55eeb87b3a990cb0b4f9 (diff) |
add -g option to specify TCP cc algorithm
This commit introduce SSH_OPTIONS_CCALGO option to the libssh patch
and add -g CONGESTION option to mscp.
Diffstat (limited to 'test/test_python.py')
-rw-r--r-- | test/test_python.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_python.py b/test/test_python.py index a6b2787..22d778a 100644 --- a/test/test_python.py +++ b/test/test_python.py @@ -121,6 +121,7 @@ param_invalid_kwargs = [ { "cipher": "invalid" }, { "hmac": "invalid"}, { "compress": "invalid"}, + { "ccalgo": "invalid"}, ] @pytest.mark.parametrize("kw", param_invalid_kwargs) |