pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/sniproxy sniproxy: update to 0.6.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9178751cef59
branches:  trunk
changeset: 317511:9178751cef59
user:      wiedi <wiedi%pkgsrc.org@localhost>
date:      Tue Jan 08 14:41:16 2019 +0000

description:
sniproxy: update to 0.6.0

2018-12-05  Dustin Lundquist <dustin%null-ptr.net@localhost>
        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

diffstat:

 net/sniproxy/Makefile                       |   4 ++--
 net/sniproxy/distinfo                       |  11 +++++------
 net/sniproxy/patches/patch-src_connection.c |  16 ----------------
 3 files changed, 7 insertions(+), 24 deletions(-)

diffs (48 lines):

diff -r 2a50099de439 -r 9178751cef59 net/sniproxy/Makefile
--- a/net/sniproxy/Makefile     Tue Jan 08 12:21:15 2019 +0000
+++ b/net/sniproxy/Makefile     Tue Jan 08 14:41:16 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2018/04/18 19:34:11 kamil Exp $
+# $NetBSD: Makefile,v 1.7 2019/01/08 14:41:16 wiedi Exp $
 
-DISTNAME=      sniproxy-0.5.0
+DISTNAME=      sniproxy-0.6.0
 CATEGORIES=    net
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=dlundquist/}
 
diff -r 2a50099de439 -r 9178751cef59 net/sniproxy/distinfo
--- a/net/sniproxy/distinfo     Tue Jan 08 12:21:15 2019 +0000
+++ b/net/sniproxy/distinfo     Tue Jan 08 14:41:16 2019 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.6 2018/04/18 19:34:11 kamil Exp $
+$NetBSD: distinfo,v 1.7 2019/01/08 14:41:16 wiedi Exp $
 
-SHA1 (sniproxy-0.5.0.tar.gz) = 181d2ce430bac34fbdf691870d089ef0ae92340a
-RMD160 (sniproxy-0.5.0.tar.gz) = 27b10d8ffdbf960b91a319c36246a12609f0cf88
-SHA512 (sniproxy-0.5.0.tar.gz) = 52dbb217193d2b7bf9dea37b13fde395b5c56d0a6627508a245f2807920deb282aae3c1ae7e6b5fa68432990e48998989fd28027b65cb7310f214b29f98e5e5d
-Size (sniproxy-0.5.0.tar.gz) = 72654 bytes
-SHA1 (patch-src_connection.c) = 062fa7fc8f023cc9a4a57e15deaaec13d0547f6f
+SHA1 (sniproxy-0.6.0.tar.gz) = 26ff187c46eb4f98f9f1731cd26f341383ea6454
+RMD160 (sniproxy-0.6.0.tar.gz) = 24e9126e100bdc6a04a4dd5fbe7379b642e04ff2
+SHA512 (sniproxy-0.6.0.tar.gz) = 8a99573673bdd57e528c5781cb166d39c80daed699382b24c3fa18a6011d074a1d9e470fee404d24b4450cf067c9995125910b2941b5216d88d189a1d79ebf73
+Size (sniproxy-0.6.0.tar.gz) = 78515 bytes
diff -r 2a50099de439 -r 9178751cef59 net/sniproxy/patches/patch-src_connection.c
--- a/net/sniproxy/patches/patch-src_connection.c       Tue Jan 08 12:21:15 2019 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-$NetBSD: patch-src_connection.c,v 1.3 2017/05/09 14:17:07 wiedi Exp $
-
-accept4 needs SOCK_NONBLOCK as flag
-upstream commit: https://github.com/dlundquist/sniproxy/commit/ce0ab17aa7bd709c34dee8fd235f35321a3ada91
-
---- src/connection.c.orig      2017-04-26 14:22:08.000000000 +0000
-+++ src/connection.c
-@@ -111,7 +111,7 @@ accept_connection(struct Listener *liste
-     int sockfd = accept4(listener->watcher.fd,
-                     (struct sockaddr *)&con->client.addr,
-                     &con->client.addr_len,
--                    O_NONBLOCK);
-+                    SOCK_NONBLOCK);
- #else
-     int sockfd = accept(listener->watcher.fd,
-                     (struct sockaddr *)&con->client.addr,



Home | Main Index | Thread Index | Old Index