- update to version 4.53
- Usage of uninitialized variables fixed in exec+connect services. - Fixed handling of a rare inetd mode use case, where either stdin or stdout is a socket, but not both of them at the same time. - Fixed crash on termination with FORK threading model. - Fixed missing file descriptors passed to local mode processes. - refreshed stunnel-listenqueue-option.patch to apply cleanly again OBS-URL: https://build.opensuse.org/package/show/security:Stunnel/stunnel?expand=0&rev=57
This commit is contained in:
parent
4b8a9ad849
commit
d2b6a87648
@ -44,12 +44,13 @@ Index: src/stunnel.c
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- src/stunnel.c.orig
|
--- src/stunnel.c.orig
|
||||||
+++ src/stunnel.c
|
+++ src/stunnel.c
|
||||||
@@ -330,7 +330,7 @@ int bind_ports(void) {
|
@@ -363,7 +363,7 @@
|
||||||
s_log(LOG_DEBUG, "Service %s bound to %s",
|
str_free(local_address);
|
||||||
opt->servname, local_address);
|
return 1;
|
||||||
str_free(local_address);
|
}
|
||||||
- if(listen(opt->fd, SOMAXCONN)) {
|
- if(listen(opt->fd, SOMAXCONN)) {
|
||||||
+ if(listen(opt->fd, opt->listenqueue)) {
|
+ if(listen(opt->fd, opt->listenqueue)) {
|
||||||
sockerror("listen");
|
sockerror("listen");
|
||||||
closesocket(opt->fd);
|
closesocket(opt->fd);
|
||||||
return 1;
|
str_free(local_address);
|
||||||
|
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jul 21 06:19:39 UTC 2012 - drahn@suse.com
|
||||||
|
|
||||||
|
- update to version 4.53
|
||||||
|
- Usage of uninitialized variables fixed in exec+connect services.
|
||||||
|
- Fixed handling of a rare inetd mode use case, where either stdin
|
||||||
|
or stdout is a socket, but not both of them at the same time.
|
||||||
|
- Fixed crash on termination with FORK threading model.
|
||||||
|
- Fixed missing file descriptors passed to local mode processes.
|
||||||
|
- refreshed stunnel-listenqueue-option.patch to apply cleanly again
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 29 18:35:32 UTC 2011 - darix@nordisch.org
|
Tue Nov 29 18:35:32 UTC 2011 - darix@nordisch.org
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ BuildRequires: gcc-c++ tcp_wrappers
|
|||||||
%endif
|
%endif
|
||||||
Summary: Universal SSL Tunnel
|
Summary: Universal SSL Tunnel
|
||||||
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
||||||
Version: 4.49
|
Version: 4.53
|
||||||
Release: 0
|
Release: 0
|
||||||
Group: Productivity/Networking/Security
|
Group: Productivity/Networking/Security
|
||||||
URL: http://www.stunnel.org/
|
URL: http://www.stunnel.org/
|
||||||
@ -59,7 +59,7 @@ stunnel.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p0
|
# %patch0 -p0
|
||||||
%patch1 -p0
|
%patch1 -p0
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user