forked from dlundquist/sniproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68dfff4
commit 525b355
Showing
5 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
2014-08-13 Dustin Lundquist <[email protected]> | ||
0.3.5 release | ||
|
||
* Configuration reloading on SIGHUP | ||
* SSL 2.0 connection handling: do not treat as an error, use fallback | ||
address if configured. | ||
* Fix buffer_coalesce error | ||
* Spawn privileged child to bind sockets to privileged ports on reload | ||
* Add -V flag to return sniproxy version | ||
* Use libev for timestamps to improve portability | ||
* Include several for BSD compatibility | ||
* Large file support (for log files) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
sniproxy (0.3.5) unstable; urgency=medium | ||
|
||
* Configuration reloading on SIGHUP | ||
* SSL 2.0 connection handling: do not treat as an error, use fallback | ||
address if configured. | ||
* Fix buffer_coalesce error | ||
* Spawn privileged child to bind sockets to privileged ports on reload | ||
* Add -V flag to return sniproxy version | ||
* Use libev for timestamps to improve portability | ||
* Include several for BSD compatibility | ||
|
||
-- Dustin Lundquist <[email protected]> Wed, 13 Aug 2014 18:25:53 -0700 | ||
|
||
sniproxy (0.3.4) unstable; urgency=medium | ||
|
||
* Add source address specification configuration option. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: sniproxy | ||
Version: 0.3.4 | ||
Version: 0.3.5 | ||
Release: 1%{?dist} | ||
Summary: Transparent TLS proxy | ||
|
||
|
@@ -43,3 +43,13 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Wed Aug 13 2014 Dustin Lundquist <[email protected]> 0.3.5-1 | ||
- Configuration reloading on SIGHUP | ||
- SSL 2.0 connection handling: do not treat as an error, use fallback | ||
address if configured. | ||
- Fix buffer_coalesce error | ||
- Spawn privileged child to bind sockets to privileged ports on reload | ||
- Add -V flag to return sniproxy version | ||
- Use libev for timestamps to improve portability | ||
- Include several for BSD compatibility | ||
- Large file support (for log files) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
|
||
VERSION=0.3.4 | ||
VERSION=0.3.5 | ||
|
||
SOURCE_DIR=$(dirname $0) | ||
GIT_DIR=${SOURCE_DIR}/.git | ||
|