Skip to content

Commit 3841d34

Browse files
committed
stunnel-5.65
1 parent 933afeb commit 3841d34

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1215
-812
lines changed

BUGS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# stunnel known bugs
22

33

4-
* Shared library for transparent proxy does not support IPv6.
4+
* The shared library for transparent proxy does not support IPv6.

CREDITS.md

Lines changed: 35 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,40 @@
33

44
The code contributions are licensed as public domain unless stated otherwise.
55

6-
Several Win32 and WCE improvements and bugfixes:
7-
* Pierre Delaage <delaage.pierre@free.fr>
8-
9-
systemd socket activation in version 5.05:
10-
Copyright (c) 2014 Mark Theunissen
11-
12-
Permission is hereby granted, free of charge, to any person obtaining a copy of
13-
this software and associated documentation files (the "Software"), to deal in
14-
the Software without restriction, including without limitation the rights to
15-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
16-
of the Software, and to permit persons to whom the Software is furnished to do
17-
so, subject to the following conditions:
18-
19-
The above copyright notice and this permission notice shall be included in all
20-
copies or substantial portions of the Software.
21-
22-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28-
SOFTWARE.
29-
30-
Several bugfixes and improvements mostly in versions 3.xx:
31-
* Brian Hatch <bri@stunnel.org>
32-
33-
Initial PTY support in version 3.05:
34-
* Dirk O. Siebnich <dok@vossnet.de>
35-
36-
Initial SSL support in versions 1.x:
37-
* Adam Hernik <adas@infocentrum.com>
38-
* Pawel Krawczyk <kravietz@ceti.com.pl>
6+
* Several Win32 and WCE improvements and bugfixes
7+
- Pierre Delaage <delaage.pierre@free.fr>
8+
9+
* Systemd socket activation dded in version 5.05
10+
- Mark Theunissen
11+
12+
> Copyright (c) 2014 Mark Theunissen
13+
>
14+
> Permission is hereby granted, free of charge, to any person obtaining a copy of
15+
> this software and associated documentation files (the "Software"), to deal in
16+
> the Software without restriction, including without limitation the rights to
17+
> use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
18+
> of the Software, and to permit persons to whom the Software is furnished to do
19+
> so, subject to the following conditions:
20+
>
21+
> The above copyright notice and this permission notice shall be included in all
22+
> copies or substantial portions of the Software.
23+
>
24+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30+
> SOFTWARE.
31+
32+
* Several bugfixes and improvements mostly in versions 3.xx
33+
- Brian Hatch <bri@stunnel.org>
34+
35+
* Initial PTY support in version 3.05:
36+
- Dirk O. Siebnich <dok@vossnet.de>
37+
38+
* Initial SSL support in versions 1.x:
39+
- Adam Hernik <adas@infocentrum.com>
40+
- Pawel Krawczyk <kravietz@ceti.com.pl>
3941

4042
and many others...

Makefile.in

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.16.3 from Makefile.am.
1+
# Makefile.in generated by automake 1.16.4 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -187,16 +187,13 @@ am__define_uniq_tagged_files = \
187187
unique=`for i in $$list; do \
188188
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
189189
done | $(am__uniquify_input)`
190-
ETAGS = etags
191-
CTAGS = ctags
192-
CSCOPE = cscope
193190
DIST_SUBDIRS = $(SUBDIRS)
194191
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/auto/compile \
195192
$(top_srcdir)/auto/config.guess $(top_srcdir)/auto/config.sub \
196193
$(top_srcdir)/auto/install-sh $(top_srcdir)/auto/ltmain.sh \
197-
$(top_srcdir)/auto/missing auto/compile auto/config.guess \
198-
auto/config.sub auto/depcomp auto/install-sh auto/ltmain.sh \
199-
auto/missing
194+
$(top_srcdir)/auto/missing AUTHORS.md NEWS.md README.md \
195+
auto/compile auto/config.guess auto/config.sub auto/depcomp \
196+
auto/install-sh auto/ltmain.sh auto/missing
200197
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
201198
distdir = $(PACKAGE)-$(VERSION)
202199
top_distdir = $(distdir)
@@ -253,6 +250,8 @@ CCDEPMODE = @CCDEPMODE@
253250
CFLAGS = @CFLAGS@
254251
CPP = @CPP@
255252
CPPFLAGS = @CPPFLAGS@
253+
CSCOPE = @CSCOPE@
254+
CTAGS = @CTAGS@
256255
CYGPATH_W = @CYGPATH_W@
257256
DEFAULT_GROUP = @DEFAULT_GROUP@
258257
DEFS = @DEFS@
@@ -264,6 +263,7 @@ ECHO_C = @ECHO_C@
264263
ECHO_N = @ECHO_N@
265264
ECHO_T = @ECHO_T@
266265
EGREP = @EGREP@
266+
ETAGS = @ETAGS@
267267
EXEEXT = @EXEEXT@
268268
FGREP = @FGREP@
269269
GREP = @GREP@
@@ -304,6 +304,7 @@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
304304
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
305305
PTHREAD_CC = @PTHREAD_CC@
306306
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
307+
PTHREAD_CXX = @PTHREAD_CXX@
307308
PTHREAD_LIBS = @PTHREAD_LIBS@
308309
RANDOM_FILE = @RANDOM_FILE@
309310
RANLIB = @RANLIB@
@@ -549,7 +550,6 @@ cscopelist-am: $(am__tagged_files)
549550
distclean-tags:
550551
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
551552
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
552-
553553
distdir: $(BUILT_SOURCES)
554554
$(MAKE) $(AM_MAKEFLAGS) distdir-am
555555

NEWS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# stunnel change log
22

33

4+
### Version 5.65, 2022.07.11, urgency: HIGH
5+
* Security bugfixes
6+
- OpenSSL DLLs updated to version 3.0.5.
7+
* Bugfixes
8+
- Fixed handling globally enabled FIPS.
9+
- Fixed the default openssl.cnf path in stunnel.exe.
10+
- Fixed a number of MSVC warnings.
11+
412
### Version 5.64, 2022.05.06, urgency: MEDIUM
513
* Security bugfixes
614
- OpenSSL DLLs updated to version 3.0.3.

README.md

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,31 @@
33

44
### Short description
55

6-
The stunnel program is designed to work as an SSL encryption
7-
wrapper between remote client and local (inetd-startable) or
8-
remote servers. The goal is to facilitate SSL encryption and
9-
authentication for non-SSL-aware programs.
6+
The stunnel program is designed to work as an SSL encryption
7+
wrapper between remote client and local (inetd-startable) or
8+
remote servers. The goal is to facilitate SSL encryption and
9+
authentication for non-SSL-aware programs.
1010

11-
stunnel can be used to add SSL functionality to commonly
12-
used inetd daemons like POP-2, POP-3 and IMAP servers
13-
without any changes in the programs' code.
11+
stunnel can be used to add SSL functionality to commonly
12+
used inetd daemons like POP-2, POP-3 and IMAP servers
13+
without any changes in the programs' code.
1414

1515
### License
1616

17-
See [COPYING](COPYING.md) file.
17+
* [COPYING](COPYING.md) A short license overview
18+
* [COPYRIGHT](COPYRIGHT.md) The complete terms and conditions
19+
* [CREDITS](CREDITS.md) A list of major contributions
1820

19-
### Other files you should read
21+
### Other useful files
2022

21-
[NEWS](NEWS.md) What I did
22-
[TODO](TODO.md) What I'm going to do
23+
* [NEWS](NEWS.md) What I did
24+
* [TODO](TODO.md) What I'm going to do
25+
* [BUGS](BUGS.md) Known bugs
26+
* [INSTALL.FIPS](INSTALL.FIPS.md), [INSTALL.W32](INSTALL.W32.md) and
27+
[INSTALL.WCE](INSTALL.WCE.md) Additional installation notes
28+
* [PORTS](PORTS.md) Known ports
2329

2430
### Reporting problems and other contacts
2531

26-
See the [FAQ](https://www.stunnel.org/faq.html).
32+
* [Support](https://www.stunnel.org/support.html) options
33+
* [Contacts](https://www.stunnel.org/contact.html)

0 commit comments

Comments
 (0)