Skip to content

Commit

Permalink
fix: new ss wasm binary + change port in test
Browse files Browse the repository at this point in the history
  • Loading branch information
erikziyunchi committed Dec 19, 2023
1 parent aa3bed6 commit b169832
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified examples/water_bins/ss_client_wasm_v1/ss_client_wasm.wasm
Binary file not shown.
Binary file modified tests/test_wasm/ss_client_wasm.wasm
Binary file not shown.
6 changes: 3 additions & 3 deletions tests/tests/ss_testing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ async fn wasm_managed_shadowsocks_bypass_async() -> Result<(), Box<dyn std::erro
let cfg_str = r#"
{
"remote_address": "127.0.0.1",
"remote_port": 0,
"remote_port": 10085,
"local_address": "127.0.0.1",
"local_port": 8888,
"local_port": 10086,
"bypass": true
}
"#;
Expand Down Expand Up @@ -230,7 +230,7 @@ async fn wasm_managed_shadowsocks_bypass_async() -> Result<(), Box<dyn std::erro
// Give some time for the WASM client to start
thread::sleep(Duration::from_millis(1000));

let wasm_ss_client_addr = SocketAddr::new("127.0.0.1".parse().unwrap(), 8888);
let wasm_ss_client_addr = SocketAddr::new("127.0.0.1".parse().unwrap(), 10086);

// ==== test WASM Shadowsocks client ====
// currently only support connect by ip,
Expand Down

0 comments on commit b169832

Please sign in to comment.