Skip to content

Commit

Permalink
hitch: Update to 1.5.2
Browse files Browse the repository at this point in the history
hitch-1.5.2 (2019-11-27)
------------------------

* Fix a problem introduced in the previous release that prevented us
  from running as a non-privileged user (Issue: 322_).

.. _322: varnish/hitch#322


hitch-1.5.1 (2019-11-26)
------------------------

* Support for TCP Fast Open. Is is disabled by default (Issue: 185_)
* Various code cleanups and minor bug fixes.

.. _185: varnish/hitch#185
  • Loading branch information
alarixnia committed May 17, 2020
1 parent 072d162 commit ff5ba51
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
5 changes: 2 additions & 3 deletions security/hitch/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.12 2020/01/18 21:50:38 jperkin Exp $
# $NetBSD: Makefile,v 1.13 2020/05/17 15:01:41 nia Exp $

DISTNAME= hitch-1.5.0
PKGREVISION= 2
DISTNAME= hitch-1.5.2
CATEGORIES= security
MASTER_SITES= https://hitch-tls.org/source/

Expand Down
12 changes: 6 additions & 6 deletions security/hitch/distinfo
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.9 2019/03/04 13:56:19 tnn Exp $
$NetBSD: distinfo,v 1.10 2020/05/17 15:01:41 nia Exp $

SHA1 (hitch-1.5.0.tar.gz) = e2f77a3213d6fe3d1b8cd212cd6bf2e0dc4c4698
RMD160 (hitch-1.5.0.tar.gz) = 37758d95652dd4c6a224d8b369e6d8da05e93f58
SHA512 (hitch-1.5.0.tar.gz) = 17991d9a82635456fcd0cebf0f1b067183bc0a02eaf0d1437ba3369674a2a9880ca8774afde984710123c46b472bdbe3b1bf6770e7475d5d24170a7674a48be5
Size (hitch-1.5.0.tar.gz) = 304169 bytes
SHA1 (hitch-1.5.2.tar.gz) = bebd7e85db8cee662ad9cef375f42de4eff50c85
RMD160 (hitch-1.5.2.tar.gz) = 909f93d80987509c5fcbd943cb44efb467eb23c6
SHA512 (hitch-1.5.2.tar.gz) = ca4cd62664dfdef3026b1230ddc350f8c3245b13c36e1b6d8ade74cc04e9857f5e060b070ea7201ca27aabcbb9b9f0d0890f9359449ba2c8d8a530cd69b093c2
Size (hitch-1.5.2.tar.gz) = 309626 bytes
SHA1 (patch-hitch.conf.example) = 21840c6028994953d9b05632c55f2da81fd817b0
SHA1 (patch-src_configuration.c) = 030ba883e99b1ce0ab13d54952dd53a94ff16cbd
SHA1 (patch-src_configuration.c) = 61689ab5946e2762af1f9c02e6a7b95bfee63368
24 changes: 12 additions & 12 deletions security/hitch/patches/patch-src_configuration.c
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
$NetBSD: patch-src_configuration.c,v 1.2 2017/07/03 13:03:02 joerg Exp $
$NetBSD: patch-src_configuration.c,v 1.3 2020/05/17 15:01:41 nia Exp $

Sane default options.

--- src/configuration.c.orig 2016-12-15 10:34:22.000000000 +0000
--- src/configuration.c.orig 2019-11-26 13:33:39.000000000 +0000
+++ src/configuration.c
@@ -193,7 +193,7 @@ config_new(void)
fa->pspec = strdup("default");
HASH_ADD_KEYPTR(hh, r->LISTEN_ARGS, fa->pspec, strlen(fa->pspec), fa);
r->LISTEN_DEFAULT = fa;
- r->OCSP_DIR = strdup("/var/lib/hitch/");
+ r->OCSP_DIR = strdup("@HITCH_OCSP@/");
r->OCSP_VFY = 0;
r->OCSP_RESP_TMO = 10.0;
r->OCSP_CONN_TMO = 4.0;
@@ -1116,7 +1116,7 @@ create_alpn_callback_data(hitch_config *
@@ -209,7 +209,7 @@ config_new(void)
r->CERT_FILES = NULL;
r->LISTEN_ARGS = NULL;
r->PEM_DIR = NULL;
- r->OCSP_DIR = strdup("/var/lib/hitch/");
+ r->OCSP_DIR = strdup("@HITCH_OCSP@/");
AN(r->OCSP_DIR);
r->OCSP_VFY = 0;
r->OCSP_RESP_TMO = 10.0;
@@ -1340,7 +1340,7 @@ create_alpn_callback_data(hitch_config *

// first remove spaces while copying to cfg->ALPN_PROTOS_LV
for(j = 0; j < l; j++)
Expand Down

0 comments on commit ff5ba51

Please sign in to comment.