aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2014-11-13 11:50:00 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2014-11-13 11:50:00 +0200
commit67731a160cc7c3e090236316af459f695593fc55 (patch)
tree2388e9b8c7820b5d36bf945989f58d7254241ae6
parent5bf995011f95b10ae03281119249f8ccb95e8496 (diff)
downloadvmod-tbf-67731a160cc7c3e090236316af459f695593fc55.tar.gz
vmod-tbf-67731a160cc7c3e090236316af459f695593fc55.tar.bz2
Version 2.0release-2.0
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
-rw-r--r--src/vmod-tbf.315
3 files changed, 15 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index f5bcc13..b87dafa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,2 +1,2 @@
1vmod-tbf -- history of user-visible changes. 2014-10-31 1vmod-tbf -- history of user-visible changes. 2014-11-13
2Copyright (C) 2013-2014 Sergey Poznyakoff 2Copyright (C) 2013-2014 Sergey Poznyakoff
@@ -7,3 +7,3 @@ Please send vmod-tbf bug reports to <gray@gnu.org>
7 7
8Version 1.0.90 (git) 8Version 2.0, 2014-11-13
9 9
diff --git a/configure.ac b/configure.ac
index 12790b6..f8e19de 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,3 +16,3 @@
16AC_PREREQ(2.69) 16AC_PREREQ(2.69)
17AC_INIT([vmod-tbf], 1.0.90, [gray@gnu.org]) 17AC_INIT([vmod-tbf], 2.0, [gray@gnu.org])
18AC_CONFIG_AUX_DIR([build-aux]) 18AC_CONFIG_AUX_DIR([build-aux])
diff --git a/src/vmod-tbf.3 b/src/vmod-tbf.3
index 6ab2f63..03d7daf 100644
--- a/src/vmod-tbf.3
+++ b/src/vmod-tbf.3
@@ -15,3 +15,3 @@
15.\" along with vmod-tbf. If not, see <http://www.gnu.org/licenses/>. 15.\" along with vmod-tbf. If not, see <http://www.gnu.org/licenses/>.
16.TH VMOD-TBF 1 "November 1, 2014" "VMOD-TBF" "User Reference" 16.TH VMOD-TBF 1 "November 13, 2014" "VMOD-TBF" "User Reference"
17.SH NAME 17.SH NAME
@@ -80,3 +80,3 @@ sub vcl_recv {
80 if (!tbf.rate("ip:" + client.ip, 1, 0.1s, 20)) { 80 if (!tbf.rate("ip:" + client.ip, 1, 0.1s, 20)) {
81 error 429 "Request rate exceeded." 81 error(429, "Request rate exceeded");
82 } 82 }
@@ -89,2 +89,11 @@ second (or longer) period of inactivity.
89.PP 89.PP
90For VCL 4.0, replace
91.EX
92 error(429, "Request rate exceeded");
93.EE
94with
95.EX
96 return(synth(429, "Request rate exceeded"));
97.EE
98.PP
90The \fBtbf.check\fR function provides a higher-level interface. Its 99The \fBtbf.check\fR function provides a higher-level interface. Its
@@ -106,3 +115,3 @@ sub vcl_recv {
106 if (!tbf.check(client.ip, "10.5 req/1s")) { 115 if (!tbf.check(client.ip, "10.5 req/1s")) {
107 error 429 "Request rate exceeded." 116 error(429, "Request rate exceeded");
108 } 117 }

Return to:

Send suggestions and report system problems to the System administrator.