aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2020-03-03 08:41:57 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2020-03-03 08:41:57 +0200
commit51dabbd7c63995b58168f5dc486b31842c7db9c4 (patch)
treea993c3d97f2743d2512a7b7a775ca3c26c048038
parent0a5822ef32b2f104cc20f700bf550d3b937e15ea (diff)
downloadvmod-tbf-51dabbd7c63995b58168f5dc486b31842c7db9c4.tar.gz
vmod-tbf-51dabbd7c63995b58168f5dc486b31842c7db9c4.tar.bz2
Support for Varnish 6.3.1v2.4
-rw-r--r--NEWS9
-rw-r--r--configure.ac6
-rw-r--r--src/tbf.c4
-rw-r--r--src/vmod_tbf.vcc6
4 files changed, 15 insertions, 10 deletions
diff --git a/NEWS b/NEWS
index 1ce185f..4984b67 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,13 @@
-vmod-tbf -- history of user-visible changes. 2018-12-10
+vmod-tbf -- history of user-visible changes. 2020-03-03
See the end of file for copying conditions.
Please send vmod-tbf bug reports to <gray@gnu.org>
+Version 2.4, 2020-03-03
+
+* Support for Varnish 6.3.1
+
+
Version 2.3, 2018-12-10
* Support for Varnish 6.0.2
@@ -36,7 +41,7 @@ Initial release
=========================================================================
Copyright information:
-Copyright (C) 2013-2018 Sergey Poznyakoff
+Copyright (C) 2013-2020 Sergey Poznyakoff
Permission is granted to anyone to make or distribute verbatim copies
of this document as received, in any medium, provided that the
diff --git a/configure.ac b/configure.ac
index 64edcee..36870ee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# This file is part of vmod-tbf -*- autoconf -*-
-# Copyright (C) 2013-2018 Sergey Poznyakoff
+# Copyright (C) 2013-2020 Sergey Poznyakoff
#
# Vmod-tbf is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with vmod-tbf. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.69)
-AC_INIT([vmod-tbf], 2.3, [gray@gnu.org])
+AC_INIT([vmod-tbf], 2.4, [gray@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod_tbf.vcc)
@@ -46,7 +46,7 @@ AC_CHECK_HEADERS(sys/sysinfo.h)
# Check for functions
AC_CHECK_FUNCS(sysinfo getloadavg)
-AM_VARNISHAPI([4.1],[6.0.2])
+AM_VARNISHAPI([4.1],[6.3.1])
AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR],
[Varnish API major version number])
diff --git a/src/tbf.c b/src/tbf.c
index 3aefad6..f1d0878 100644
--- a/src/tbf.c
+++ b/src/tbf.c
@@ -1,5 +1,5 @@
/* This file is part of vmod-tbf
- Copyright (C) 2013-2016 Sergey Poznyakoff
+ Copyright (C) 2013-2020 Sergey Poznyakoff
Vmod-tbf is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -846,7 +846,7 @@ tbf_exit(void)
}
int
-tbf_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
+vmod_tbf_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
{
switch (e) {
case VCL_EVENT_LOAD:
diff --git a/src/vmod_tbf.vcc b/src/vmod_tbf.vcc
index 0ec6b8a..686bca4 100644
--- a/src/vmod_tbf.vcc
+++ b/src/vmod_tbf.vcc
@@ -1,5 +1,5 @@
# This file is part of vmod-tbf
-# Copyright (C) 2013-2016 Sergey Poznyakoff
+# Copyright (C) 2013-2020 Sergey Poznyakoff
#
# Vmod-tbf is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with vmod-tbf. If not, see <http://www.gnu.org/licenses/>.
-$Module tbf 3 Token Bucket Filtering for Varnish
+$Module tbf 3 "Token Bucket Filtering for Varnish"
COLOPHON
========
@@ -39,4 +39,4 @@ $Function STRING strftime(STRING, INT)
$Function VOID sleep(DURATION)
$Function VOID log_tree(INT)
-$Function VOID log_stats(INT) \ No newline at end of file
+$Function VOID log_stats(INT)

Return to:

Send suggestions and report system problems to the System administrator.