Skip to content

Commit d4eea84

Browse files
committed
Release 0.11.1
1 parent b1f1b3e commit d4eea84

File tree

6 files changed

+25
-3
lines changed

6 files changed

+25
-3
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2026-03-17 Renaud Allard <renaud@allard.it>
2+
3+
* Release 0.11.1
4+
- Fix IPV6_V6ONLY not effective when binding privileged ports via
5+
binder child process (setsockopt after bind rejected by Linux)
6+
17
2026-03-16 Renaud Allard <renaud@allard.it>
28

39
* Release 0.11.0

NEWS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
sniproxy 0.11.1 (2026-03-17)
2+
===============================
3+
4+
* Bugfix: Fix IPV6_V6ONLY not effective when binding privileged ports
5+
via binder child process. On Linux, setsockopt(IPV6_V6ONLY) after
6+
bind() is rejected with EINVAL, so the option must be set before
7+
bind(). The ipv6_v6only flag is now passed to the binder child which
8+
sets it before calling bind().
9+
110
sniproxy 0.11.0 (2026-03-16)
211
===============================
312

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- Autoconf -*-
22
# Process this file with autoconf to produce a configure script.
33
AC_PREREQ([2.71])
4-
AC_INIT([sniproxy],[0.11.0])
4+
AC_INIT([sniproxy],[0.11.1])
55
AM_INIT_AUTOMAKE([subdir-objects])
66
AM_SILENT_RULES([yes])
77
AC_USE_SYSTEM_EXTENSIONS

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
sniproxy (0.11.1) unstable; urgency=medium
2+
3+
* Fix IPV6_V6ONLY not effective when binding privileged ports via
4+
binder child process.
5+
6+
-- Renaud Allard <renaud@allard.it> Mon, 17 Mar 2026 12:00:00 +0100
7+
18
sniproxy (0.11.0) unstable; urgency=medium
29

310
* Add DTLS (TLS over UDP) protocol support for proxying WebRTC,

redhat/sniproxy.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: sniproxy
2-
Version: 0.11.0
2+
Version: 0.11.1
33
Release: 1%{?dist}
44
Summary: Transparent TLS and HTTP layer 4 proxy with SNI support
55

setver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
VERSION=0.11.0
3+
VERSION=0.11.1
44

55
SOURCE_DIR=$(dirname $0)
66
GIT_DIR=${SOURCE_DIR}/.git

0 commit comments

Comments
 (0)