diff --git a/Cargo.toml b/Cargo.toml index 395b376..d74ade3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sslrelay" -version = "0.6.1" +version = "0.6.2" authors = ["PinkP4nther @Pink_P4nther"] edition = "2018" description = "A TCP relay library for relaying/modifying/spoofing TCP traffic by implementing callback code." diff --git a/README.md b/README.md index 3aa255e..ef407d8 100644 --- a/README.md +++ b/README.md @@ -31,4 +31,7 @@ A TCP relay library that can handle raw TCP and SSL/TLS connections. You can rea > > 10/08/2021 | **v0.4.4** | Added ability to set TLS certificate and certificate private key to nothing. When passing RelayConfig to the relay object use the 'None' variant of Option enum. In a config file put the cert path and key path as an empty 'String' to specify 'None'. > -> 10/09/2021 | **v0.6.0** | Gone away with 'ConfigType'! No more specifying config files unless the developer implements it themself. A new config enum 'TLSConfig' has been introduced. This has 3 variants FILE(Specify the cert and pk file paths), DATA(Pass the cert(PEM) data and the pk(PEM) data as bytes), NONE(This is when you are not using TLS on the listening/downstream side of the relay). \ No newline at end of file +> 10/09/2021 | **v0.6.0** | Gone away with 'ConfigType'! No more specifying config files unless the developer implements it themself. A new config enum 'TLSConfig' has been introduced. This has 3 variants FILE(Specify the cert and pk file paths), DATA(Pass the cert(PEM) data and the pk(PEM) data as bytes), NONE(This is when you are not using TLS on the listening/downstream side of the relay). +> +> 10/10/2021 | **v0.6.2** | StreamWrite's to master thread are no longer verbose when the opposite stream disconnects randomly. +> \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 45b76a6..e6cfa2f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! ## SSLRelay //! Library for relaying TCP traffic as well as TLS encrypted TCP traffic. -//! This Library allows you to implement callback functions for upstream and downstream traffic. +//! This library allows you to implement callback functions for upstream and downstream traffic. //! These callbacks can R/W the data from a stream(Blocking) or only R the data(Non-Blocking). //!``` //!pub trait HandlerCallbacks {