aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-12-10 13:34:26 +0200
committerSergey Poznyakoff <gray@gnu.org>2018-12-10 13:35:46 +0200
commit64853618b1c0ae890772aaad3ef75ffe6fdce67a (patch)
treef3f270896ae5652d357c209331459cb9bb97b12c
parentab8851545baad4d84dd7f42336dd3de9accdba5f (diff)
downloadvmod-binlog-64853618b1c0ae890772aaad3ef75ffe6fdce67a.tar.gz
vmod-binlog-64853618b1c0ae890772aaad3ef75ffe6fdce67a.tar.bz2
Version 2.3
Support for Varnish API 6.0.2
-rw-r--r--.gitignore1
-rw-r--r--NEWS10
-rw-r--r--README5
m---------acvmod0
-rw-r--r--configure.ac9
-rw-r--r--doc/vmod-binlog.36
-rw-r--r--src/binlog.c10
7 files changed, 26 insertions, 15 deletions
diff --git a/.gitignore b/.gitignore
index 506e185..4ae0169 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,2 +25,3 @@ configure
25core 25core
26libltdl
26libtool 27libtool
diff --git a/NEWS b/NEWS
index be596dd..4e3b1fb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,2 @@
1Vmod-binlog NEWS -- history of user-visible changes. 2017-08-10 1Vmod-binlog NEWS -- history of user-visible changes. 2018-12-10
2Copyright (C) 2013-2017 Sergey Poznyakoff
3See the end of file for copying conditions. 2See the end of file for copying conditions.
@@ -6,2 +5,7 @@ Please send Vmod-binlog bug reports to <gray@gnu.org>
6 5
6Version 2.3, 2018-12-10
7
8* Support for Varnish 6.0.2
9
10
7Version 2.2, 2017-08-10 11Version 2.2, 2017-08-10
@@ -33,3 +37,3 @@ Initial release.
33 37
34Copyright (C) 2013-2017 Sergey Poznyakoff 38Copyright (C) 2013-2018 Sergey Poznyakoff
35 39
diff --git a/README b/README
index c1d552b..ff926e0 100644
--- a/README
+++ b/README
@@ -1,3 +1,2 @@
1Vmod-binlog README 1Vmod-binlog README
2Copyright (C) 2013-2017 Sergey Poznyakoff
3See the end of file for copying conditions. 2See the end of file for copying conditions.
@@ -25,3 +24,3 @@ and searching in binary log files.
25 24
26The module was tested with Varnish versions 4.1, and 5.1. 25The module was tested with Varnish versions 4.1 through 6.0.2.
27 26
@@ -94,3 +93,3 @@ Send bug reports and suggestions to <gray@gnu.org>
94 93
95Copyright (C) 2013-2017 Sergey Poznyakoff 94Copyright (C) 2013-2018 Sergey Poznyakoff
96 95
diff --git a/acvmod b/acvmod
Subproject 5f6dce2f7dd35a154333bb42d134a018b981f81 Subproject 5b214e3d72f9e261a37cf31deb41e7f8a61a181
diff --git a/configure.ac b/configure.ac
index 1ad400d..bdb25c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,3 +1,3 @@
1# This file is part of vmod-binlog 1# This file is part of vmod-binlog
2# Copyright (C) 2013-2017 Sergey Poznyakoff 2# Copyright (C) 2013-2018 Sergey Poznyakoff
3# 3#
@@ -16,3 +16,3 @@
16AC_PREREQ(2.69) 16AC_PREREQ(2.69)
17AC_INIT([vmod-binlog], 2.2, [gray@gnu.org]) 17AC_INIT([vmod-binlog], 2.3, [gray@gnu.org])
18AC_CONFIG_AUX_DIR([build-aux]) 18AC_CONFIG_AUX_DIR([build-aux])
@@ -54,4 +54,5 @@ AC_CHECK_HEADERS([sys/stdlib.h])
54 54
55AM_VARNISHAPI([4.1],[5.1]) 55AM_VARNISHAPI([4.1],[6.0.2])
56 56AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR],
57 [Varnish API major version number])
57AC_SUBST(BINLOGSEL_MODDIR,'$(libdir)/$(PACKAGE)') 58AC_SUBST(BINLOGSEL_MODDIR,'$(libdir)/$(PACKAGE)')
diff --git a/doc/vmod-binlog.3 b/doc/vmod-binlog.3
index 66dbc5a..97b942a 100644
--- a/doc/vmod-binlog.3
+++ b/doc/vmod-binlog.3
@@ -1,3 +1,3 @@
1.\" This file is part of Vmod-binlog -*- nroff -*- 1.\" This file is part of Vmod-binlog -*- nroff -*-
2.\" Copyright (C) 2013-2014 Sergey Poznyakoff 2.\" Copyright (C) 2013-2018 Sergey Poznyakoff
3.\" 3.\"
@@ -15,3 +15,3 @@
15.\" along with vmod-binlog. If not, see <http://www.gnu.org/licenses/>. 15.\" along with vmod-binlog. If not, see <http://www.gnu.org/licenses/>.
16.TH VMOD-BINLOG 1 "November 1, 2014" "VMOD-BINLOG" "User Reference" 16.TH VMOD-BINLOG 1 "December 10, 2018" "VMOD-BINLOG" "User Reference"
17.SH NAME 17.SH NAME
@@ -259,3 +259,3 @@ the repeat count.
259. ds package vmod-binlog 259. ds package vmod-binlog
260. ds version 1.0 260. ds version 2.3
261. so download.inc 261. so download.inc
diff --git a/src/binlog.c b/src/binlog.c
index b2d581c..8263c12 100644
--- a/src/binlog.c
+++ b/src/binlog.c
@@ -1,3 +1,3 @@
1/* This file is part of vmod-binlog 1/* This file is part of vmod-binlog
2 Copyright (C) 2013, 2014, 2016, 2017 Sergey Poznyakoff 2 Copyright (C) 2013-2018 Sergey Poznyakoff
3 3
@@ -29,2 +29,8 @@
29#include <time.h> 29#include <time.h>
30#include <string.h>
31#if VARNISHAPI_MAJOR > 5
32# include "cache/cache.h"
33# include "vcl.h"
34# include "vcc_if.h"
35#else
30# include "vcl.h" 36# include "vcl.h"
@@ -32,4 +38,4 @@
32# include "vcc_if.h" 38# include "vcc_if.h"
33
34# include "cache/cache.h" 39# include "cache/cache.h"
40#endif
35#define WSPTR(s) ((s)->ws) 41#define WSPTR(s) ((s)->ws)

Return to:

Send suggestions and report system problems to the System administrator.