summaryrefslogtreecommitdiffhomepage
path: root/test/socks-server/src/lib.rs
AgeCommit message (Collapse)AuthorFilesLines
2024-04-12Fix SOCKS5 server should accept all trafficMarkus Pettersson1-4/+4
Specify that the `Authentication` should be 'Accept all traffic' by default for the SOCKS5-server we spawn on the test manager. Otherwise, the default is to 'Deny all traffic' by default.
2024-04-09Run `cargo +nightly fmt`Sebastian Holmin1-2/+1
2024-02-27Replace err_derive with thiserrorJoakim Hulthe1-4/+3
`err_derive` is unmaintained and will probably stop working with rust edition 2024. `thiserror` is almost a drop-in replacement. This commit simply replaces all occurences of `derive(err_derive::Error)` with `derive(thiserror::Error)` and fixes the attributes, but the Error and Display impls should be identical.
2024-02-07Add RPCs for running TCP forwarder on test runnerDavid Lönnhager1-2/+22
2024-02-07Move testing SOCKS server to own crateDavid Lönnhager1-0/+38