Commit c02e2d7aeeba25cb53d8a81acad55318ce63a4c4
v1.15 release
Yves Rutschle committed on 7/27/2013, 2:25:04 PMParent: 59c9be54ad6423c26ae1fb8012f0ecf219e26ceb
Files changed
ChangeLog | changed |
Makefile | changed |
ChangeLog | ||
---|---|---|
@@ -1,5 +1,5 @@ | ||
1 | -vNEXT: | |
1 | +v1.15: 27JUL2013 | |
2 | 2 | Added --transparent option for transparent proxying. |
3 | 3 | See README for iptables magic and capability |
4 | 4 | management. |
5 | 5 | |
@@ -9,8 +9,11 @@ | ||
9 | 9 | |
10 | 10 | Fixed bug in sslh-select: if socket dropped while |
11 | 11 | defered_data was present, sslh-select would crash. |
12 | 12 | |
13 | + Increased FD_SETSIZE for Cygwin, as the default 64 | |
14 | + is too low for even moderate load. | |
15 | + | |
13 | 16 | v1.14: 21DEC2012 |
14 | 17 | Corrected OpenVPN probe to support pre-shared secret |
15 | 18 | mode (OpenVPN port-sharing code is... wrong). Thanks |
16 | 19 | to Kai Ellinger for help in investigating and |
Makefile | ||
---|---|---|
@@ -1,7 +1,7 @@ | ||
1 | 1 | # Configuration |
2 | 2 | |
3 | -VERSION="1.14" | |
3 | +VERSION="1.15" | |
4 | 4 | USELIBCONFIG=1 # Use libconfig? (necessary to use configuration files) |
5 | 5 | USELIBWRAP= # Use libwrap? |
6 | 6 | COV_TEST= # Perform test coverage? |
7 | 7 | PREFIX=/usr/local |
@@ -55,11 +55,9 @@ | ||
55 | 55 | |
56 | 56 | # Create release: export clean tree and tag current |
57 | 57 | # configuration |
58 | 58 | 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 | |
62 | 60 | |
63 | 61 | # generic install: install binary and man page |
64 | 62 | install: sslh $(MAN) |
65 | 63 | install -D sslh-fork $(PREFIX)/sbin/sslh |
Built with git-ssb-web