summaryrefslogtreecommitdiff
path: root/lib/tbf.c
blob: e6e84b4f9b057fc8c109ca8290a9ab4cfd161e2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 *	BIRD Library -- Token Bucket Filter
 *
 *	(c) 2014 Ondrej Zajicek <santiago@crfreenet.org>
 *	(c) 2014 CZ.NIC z.s.p.o.
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#include "nest/bird.h"
#include "lib/timer.h"

int
tbf_limit(struct tbf *f)
{
  btime delta = current_time() - f->timestamp;

  if (delta > 0)
  {
    u64 next = f->count + delta * f->rate;
    u64 burst = (u64) f->burst << 20;
    f->count = MIN(next, burst);
    f->timestamp += delta;
  }

  if (f->count < 1000000)
  {
    f->drop++;
    return 1;
  }
  else
  {
    f->count -= 1000000;
    f->drop = 0;
    return 0;
  }
}