Bump version to 0.9.2

pull/48/head
Soner Tari 3 years ago
parent eba4eb3ea6
commit c90f71f5ef

@ -1,5 +1,11 @@
### SSLproxy 0.9.2 2021-11-13
- Update with the license change of the Aho Corasick library to the LGPL.
- Various fixes and improvements.
### SSLproxy 0.9.1 2021-11-07
- Add structured filtering rules:

@ -148,11 +148,12 @@ typedef struct opts {
userlist_t *passusers;
#endif /* !WITHOUT_USERAUTH */
// Used to store filter rules and to create filter
// Freed during startup after filter is created and debug printed
// Used to store macros and filter rules and to create the filter
// Freed during startup after the filter is created and debug printed
struct macro *macro;
struct filter_rule *filter_rules;
struct filter *filter;
struct macro *macro;
global_t *global;
} opts_t;

@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.TH "sslproxy" "1" "07 November 2021" "v0.9.1" "SSLproxy"
.TH "sslproxy" "1" "13 November 2021" "v0.9.2" "SSLproxy"
.SH NAME
sslproxy \-\- transparent SSL/TLS proxy for decrypting and diverting network
traffic to other programs for deep SSL inspection

@ -1,4 +1,4 @@
# Sample configuration for sslproxy v0.9.1
# Sample configuration for sslproxy v0.9.2
#
# Use the -f command line option to start sslproxy with a config file.
# See sslproxy.conf(5) and sslproxy(1) for documentation.

@ -26,7 +26,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.TH "sslproxy.conf" "5" "07 November 2021" "v0.9.1" "SSLproxy"
.TH "sslproxy.conf" "5" "13 November 2021" "v0.9.2" "SSLproxy"
.SH "NAME"
.LP
\fBsslproxy.conf\fR \- Configuration file for SSLproxy

@ -1,4 +1,4 @@
# TestProxy test configuration for sslproxy v0.9.1
# TestProxy test configuration for sslproxy v0.9.2
# Global options
#User _sslproxy

@ -1,4 +1,4 @@
# TestProxy test configuration for sslproxy v0.9.1
# TestProxy test configuration for sslproxy v0.9.2
# Global options
#User _sslproxy

@ -1,4 +1,4 @@
# TestProxy test configuration for sslproxy v0.9.1
# TestProxy test configuration for sslproxy v0.9.2
# Global options
#User _sslproxy

Loading…
Cancel
Save