git ssb

0+

cel / sslh



Commit c02e2d7aeeba25cb53d8a81acad55318ce63a4c4

v1.15 release

Yves Rutschle committed on 7/27/2013, 2:25:04 PM
Parent: 59c9be54ad6423c26ae1fb8012f0ecf219e26ceb

Files changed

ChangeLogchanged
Makefilechanged
ChangeLogView
@@ -1,5 +1,5 @@
1-vNEXT:
1+v1.15: 27JUL2013
22 Added --transparent option for transparent proxying.
33 See README for iptables magic and capability
44 management.
55
@@ -9,8 +9,11 @@
99
1010 Fixed bug in sslh-select: if socket dropped while
1111 defered_data was present, sslh-select would crash.
1212
13+ Increased FD_SETSIZE for Cygwin, as the default 64
14+ is too low for even moderate load.
15+
1316 v1.14: 21DEC2012
1417 Corrected OpenVPN probe to support pre-shared secret
1518 mode (OpenVPN port-sharing code is... wrong). Thanks
1619 to Kai Ellinger for help in investigating and
MakefileView
@@ -1,7 +1,7 @@
11 # Configuration
22
3-VERSION="1.14"
3+VERSION="1.15"
44 USELIBCONFIG=1 # Use libconfig? (necessary to use configuration files)
55 USELIBWRAP= # Use libwrap?
66 COV_TEST= # Perform test coverage?
77 PREFIX=/usr/local
@@ -55,11 +55,9 @@
5555
5656 # Create release: export clean tree and tag current
5757 # configuration
5858 release:
59- svn export . /tmp/sslh-$(VERSION)
60- ( cd /tmp; tar zcvf /tmp/sslh-$(VERSION).tar.gz sslh-$(VERSION) )
61- ( cd .. ; svn copy trunk tags/sslh-$(VERSION) ; cd tags/sslh-$(VERSION) ; make clean )
59+ git archive master --prefix="sslh-$(VERSION)/" | gzip > /tmp/sslh-$(VERSION).tar.gz
6260
6361 # generic install: install binary and man page
6462 install: sslh $(MAN)
6563 install -D sslh-fork $(PREFIX)/sbin/sslh

Built with git-ssb-web