File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / bird2 / lib / tbf.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 21 16:03:56 2019 UTC (4 years, 8 months ago) by misho
Branches: bird2, MAIN
CVS tags: v2_0_7p0, HEAD
bird2 ver 2.0.7

/*
 *	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;
  }
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>