#!/usr/bin/env php
<?php

/**
	author : Marc Quinton - march 2007.
	licence : LGPL

	ispMonitor - an easy to use php-gtk2 frontend to ping command 

	ispMonitor is a easy to use GUI for the ping command, allowing one to monitor network defects over 
	broadband ADSL Internet connections. ispMonitor takes care of dropped or late packets. Results are
	displayed both visually and in a text window.

*/


$dir = dirname(__FILE__);

define('DIR', $dir);
define('PROG_NAME', 'ispMonitor');

ini_set('include_path', "$dir:$dir/lib:" . ini_get('include_path'));


# fist snapshot ; should not start like that (lib/Ping.php) ; sorry
# chdir ("$dir/lib");
include_once("$dir/lib/IspMonitor.php");

?>
