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.
Merge branch 'dlundquist:master' into master
- Loading branch information
Showing
21 changed files
with
167 additions
and
93 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
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,9 @@ | ||
2023-03-16 Dustin Lundquist <[email protected]> | ||
0.6.1 Release | ||
|
||
* Fix buffer overflow in address module | ||
* Fix tests | ||
|
||
2018-12-05 Dustin Lundquist <[email protected]> | ||
0.6.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
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.6.1) UNRELEASED; urgency=medium | ||
|
||
* New git revision | ||
|
||
-- Dustin Lundquist <[email protected]> Thu, 14 Dec 2023 09:40:47 -0800 | ||
|
||
sniproxy (0.6.1) unstable; urgency=high | ||
|
||
* Fix buffer overflow in address module | ||
* Fix tests | ||
|
||
-- Dustin Lundquist <[email protected]> Thu, 16 Mar 2023 21:53:48 -0700 | ||
|
||
sniproxy (0.6.0) unstable; urgency=medium | ||
|
||
* PROXY v1 protocol support | ||
|
@@ -10,7 +23,7 @@ sniproxy (0.6.0) unstable; urgency=medium | |
sniproxy (0.5.0) unstable; urgency=medium | ||
|
||
* Transparent proxy support | ||
* Use accept4() on Linix | ||
* Use accept4() on Linux | ||
* Run as group specified in config | ||
|
||
-- Dustin Lundquist <[email protected]> Wed, 26 Apr 2017 07:17:13 -0700 | ||
|
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 +1 @@ | ||
8 | ||
10 |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ Source: sniproxy | |
Section: web | ||
Priority: optional | ||
Maintainer: Dustin Lundquist <[email protected]> | ||
Build-Depends: cdbs, debhelper (>= 8.0.0), dh-autoreconf, autotools-dev, gettext, pkg-config, libev-dev (>= 4.0), libpcre3-dev, libudns-dev | ||
Build-Depends: cdbs, debhelper (>= 8.0.0), dh-autoreconf, autotools-dev, gettext, pkg-config, libev-dev (>= 4.0), libpcre2-dev | libpcre3-dev, libudns-dev | ||
Standards-Version: 3.9.5 | ||
Vcs-Git: https://github.com/dlundquist/sniproxy.git | ||
Vcs-Browser: https://github.com/dlundquist/sniproxy | ||
|
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,5 +1,5 @@ | ||
Name: sniproxy | ||
Version: 0.6.0 | ||
Version: 0.6.1 | ||
Release: 1%{?dist} | ||
Summary: Transparent TLS and HTTP layer 4 proxy with SNI support | ||
|
||
|
@@ -46,6 +46,10 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Thu Mar 16 2023 Dustin Lundquist <[email protected] 0.6.1-1 | ||
- Fix buffer overflow in address module | ||
- Fix tests | ||
|
||
* 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 | ||
|
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.6.0 | ||
VERSION=0.6.1 | ||
|
||
SOURCE_DIR=$(dirname $0) | ||
GIT_DIR=${SOURCE_DIR}/.git | ||
|
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
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
Oops, something went wrong.