aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS9
-rw-r--r--configure.ac6
-rw-r--r--src/vmod_geoip.c2
-rw-r--r--src/vmod_geoip.vcc2
4 files changed, 12 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 7f44be9..e5e0501 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,13 @@
-Vmod-geoip NEWS -- history of user-visible changes. 2018-12-10
+Vmod-geoip NEWS -- history of user-visible changes. 2020-03-03
See the end of file for copying conditions.
Please send Vmod-geoip bug reports to <gray@gnu.org>
+Version 1.1, 2020-03-03
+
+* Support for Varnish 6.3.1
+
+
Version 1.0, 2018-12-10
* Support for Varnish 6.0.2
@@ -13,7 +18,7 @@ Initial release
Copyright information:
-Copyright (C) 2017-2018 Sergey Poznyakoff
+Copyright (C) 2017-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 ede46f9..903f270 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# This file is part of vmod-geoip -*- autoconf -*-
-# Copyright (C) 2017-2018 Sergey Poznyakoff
+# Copyright (C) 2017-2020 Sergey Poznyakoff
#
# Vmod-geoip 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-geoip. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.69)
-AC_INIT([vmod-geoip], 1.0, [gray@gnu.org])
+AC_INIT([vmod-geoip], 1.1, [gray@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR(src/vmod_geoip.vcc)
@@ -42,7 +42,7 @@ AC_PROG_MAKE_SET
AC_HEADER_STDC
AC_CHECK_HEADERS([sys/stdlib.h])
-AM_VARNISHAPI([5.1], [6.0.2])
+AM_VARNISHAPI([5.1], [6.3.1])
AC_DEFINE_UNQUOTED([VARNISHAPI_MAJOR],[$VARNISHAPI_MAJOR],
[Varnish API major version number])
diff --git a/src/vmod_geoip.c b/src/vmod_geoip.c
index 5c1a2d4..47729fa 100644
--- a/src/vmod_geoip.c
+++ b/src/vmod_geoip.c
@@ -41,7 +41,7 @@ free_conf(void *data)
}
int
-geoip_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
+vmod_geoip_event(VRT_CTX, struct vmod_priv *priv, enum vcl_event_e e)
{
if (e == VCL_EVENT_LOAD) {
struct geoip_config *conf = calloc(1, sizeof(*conf));
diff --git a/src/vmod_geoip.vcc b/src/vmod_geoip.vcc
index d96dc09..4500ad2 100644
--- a/src/vmod_geoip.vcc
+++ b/src/vmod_geoip.vcc
@@ -1,4 +1,4 @@
-$Module geoip 3 GeoIP support for Varnish Cache
+$Module geoip 3 "GeoIP support for Varnish Cache"
DESCRIPTION
===========

Return to:

Send suggestions and report system problems to the System administrator.