File: rate.h

package info (click to toggle)
httpry 0.1.8-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 436 kB
  • sloc: ansic: 1,358; perl: 1,336; sh: 155; makefile: 62
file content (19 lines) | stat: -rw-r--r-- 529 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*

  ----------------------------------------------------
  httpry - HTTP logging and information retrieval tool
  ----------------------------------------------------

  Copyright (c) 2005-2014 Jason Bittel <jason.bittel@gmail.com>

*/

#ifndef _HAVE_RATE_H
#define _HAVE_RATE_H

void init_rate_stats(int display_interval, char *use_infile, int rate_threshold);
void cleanup_rate_stats();
void display_rate_stats(char *use_infile, int rate_threshold);
void update_host_stats(char *host, time_t t);

#endif /* ! _HAVE_RATE_H */