-
Notifications
You must be signed in to change notification settings - Fork 400
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
10ddfbf
commit fc5f90d
Showing
5 changed files
with
26 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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
2018-12-05 Dustin Lundquist <[email protected]> | ||
0.6.0 Release | ||
|
||
* PROXY v1 protocol support | ||
* SO_REUSEPORT support on Linux 3.9 and later | ||
* Listener ipv6_only directive to accept only IPv6 connections | ||
* TCP keepalive | ||
|
||
2017-04-26 Dustin Lundquist <[email protected]> | ||
0.5.0 Release | ||
|
||
|
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,12 @@ | ||
sniproxy (0.6.0) unstable; urgency=medium | ||
|
||
* PROXY v1 protocol support | ||
* SO_REUSEPORT support on Linux 3.9 and later | ||
* Listener ipv6_only directive to accept only IPv6 connections | ||
* TCP keepalive | ||
|
||
-- Dustin Lundquist <[email protected]> Wed, 05 Dec 2018 20:12:24 -0800 | ||
|
||
sniproxy (0.5.0) unstable; urgency=medium | ||
|
||
* Transparent proxy support | ||
|
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.5.0 | ||
Version: 0.6.0 | ||
Release: 1%{?dist} | ||
Summary: Transparent TLS and HTTP layer 4 proxy with SNI support | ||
|
||
|
@@ -46,6 +46,12 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Wed Dec 5 2018 Dustin Lundquist <[email protected]> 0.6.0-1 | ||
- PROXY v1 protocol support | ||
- SO_REUSEPORT support on Linux 3.9 and later | ||
- Listener ipv6_only directive to accept only IPv6 connections | ||
- TCP keepalive | ||
|
||
* Wed Apr 26 2017 Dustin Lundquist <[email protected]> 0.5.0-1 | ||
- Transparent proxy support | ||
- Use accept4() on Linix | ||
|
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.5.0 | ||
VERSION=0.6.0 | ||
|
||
SOURCE_DIR=$(dirname $0) | ||
GIT_DIR=${SOURCE_DIR}/.git | ||
|