mirror of
https://github.com/moparisthebest/sslh
synced 2024-11-21 08:35:01 -05:00
v1.15 release
This commit is contained in:
parent
59c9be54ad
commit
c02e2d7aee
@ -1,4 +1,4 @@
|
||||
vNEXT:
|
||||
v1.15: 27JUL2013
|
||||
Added --transparent option for transparent proxying.
|
||||
See README for iptables magic and capability
|
||||
management.
|
||||
@ -10,6 +10,9 @@ vNEXT:
|
||||
Fixed bug in sslh-select: if socket dropped while
|
||||
defered_data was present, sslh-select would crash.
|
||||
|
||||
Increased FD_SETSIZE for Cygwin, as the default 64
|
||||
is too low for even moderate load.
|
||||
|
||||
v1.14: 21DEC2012
|
||||
Corrected OpenVPN probe to support pre-shared secret
|
||||
mode (OpenVPN port-sharing code is... wrong). Thanks
|
||||
|
6
Makefile
6
Makefile
@ -1,6 +1,6 @@
|
||||
# Configuration
|
||||
|
||||
VERSION="1.14"
|
||||
VERSION="1.15"
|
||||
USELIBCONFIG=1 # Use libconfig? (necessary to use configuration files)
|
||||
USELIBWRAP= # Use libwrap?
|
||||
COV_TEST= # Perform test coverage?
|
||||
@ -56,9 +56,7 @@ $(MAN): sslh.pod Makefile
|
||||
# Create release: export clean tree and tag current
|
||||
# configuration
|
||||
release:
|
||||
svn export . /tmp/sslh-$(VERSION)
|
||||
( cd /tmp; tar zcvf /tmp/sslh-$(VERSION).tar.gz sslh-$(VERSION) )
|
||||
( cd .. ; svn copy trunk tags/sslh-$(VERSION) ; cd tags/sslh-$(VERSION) ; make clean )
|
||||
git archive master --prefix="sslh-$(VERSION)/" | gzip > /tmp/sslh-$(VERSION).tar.gz
|
||||
|
||||
# generic install: install binary and man page
|
||||
install: sslh $(MAN)
|
||||
|
Loading…
Reference in New Issue
Block a user