##-- Main function the collect all the informations --##
sub get_all_stats {
        if ($fromconf{cisco} =~ /yes/) {
                get_airo_stats;
                read_airo_conf;
                get_wireless_stats;
        }
        else {
                get_wireless_stats;
                read_wirelless_conf;
        }
	return($true);
}

