foist
[fingerprinter.git] / include / Config.php
1 <?php
2
3 /* Generic Configuration for Finger Printer application */
4 class Config {
5         protected $host         = "syslogserver";
6         protected $port         = 514;
7         protected $process  = "FingerPrinter";
8         protected $facility = 1;
9         protected $severity = 5;
10         protected $hostname = "hostitisrunningfrom";
11         protected $ipaddress = "ipitisrunningfrom";
12         protected $params = Array(
13                 'plugins',
14                 'fonts',
15                 'timezone',
16                 'video',
17                 'supercookies'
18         );
19         protected $debug = false;
20 }
21
22
23
24
25
26 ?>