ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/ihost-perl/ihost.pl
(Generate patch)

Comparing projects/cms/source/host/ihost-perl/ihost.pl (file contents):
Revision 1.47 by tdb, Thu Mar 21 17:57:13 2002 UTC vs.
Revision 1.49 by tdb, Sat May 18 18:15:56 2002 UTC

# Line 1 | Line 1
1   #!/usr/bin/perl -w
2  
3 + #
4 + # i-scream central monitoring system
5 + # Copyright (C) 2000-2002 i-scream
6 + #
7 + # This program is free software; you can redistribute it and/or
8 + # modify it under the terms of the GNU General Public License
9 + # as published by the Free Software Foundation; either version 2
10 + # of the License, or (at your option) any later version.
11 + #
12 + # This program is distributed in the hope that it will be useful,
13 + # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 + # GNU General Public License for more details.
16 + #
17 + # You should have received a copy of the GNU General Public License
18 + # along with this program; if not, write to the Free Software
19 + # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 + #
21 +
22   # -----------------------------------------------------------
23   # Perl i-scream Host.
24   # http://www.i-scream.org.uk
# Line 142 | Line 161 | sub tcp_configure() {
161      
162          print $sock "LASTMODIFIED\n";
163          $response = <$sock>;
164 <        if (!$response) {
165 <            print "The i-scream server did not return anything for the LASTMODIFIED command.\n";
164 >        if (!$response || $response eq "ERROR\n") {
165 >            print "The i-scream server did not provide the LASTMODIFIED value.\n";
166              close($sock);
167              wait_then_retry();
168              next;
169          }
170 <        chop $response;
170 >        chomp $response;
171          $last_modified = $response;
172      
173          print "Config last modified: ". (scalar localtime $last_modified/1000) . "\n";
174  
175          print $sock "FILELIST\n";
176          $response = <$sock>;
177 <        if (!$response) {
177 >        if (!$response || $response eq "ERROR\n") {
178              print "The i-scream server did not provide a configuration file list.\n";
179              close($sock);
180              wait_then_retry();
181              next;
182          }
183 <        chop $response;
183 >        chomp $response;
184          $file_list = $response;
185  
186          print "File list obtained: $file_list\n";
187  
188          print $sock "FQDN\n";
189          $response = <$sock>;
190 <        if (!$response) {
190 >        if (!$response || $response eq "ERROR\n") {
191              print "The i-scream server did not tell us our FQDN.\n";
192              close($sock);
193              wait_then_retry();
194              next;
195          }
196 <        chop $response;
196 >        chomp $response;
197          $fqdn = $response;
198  
199          print "FQDN returned: $fqdn\n";
200  
201          print $sock "UDPUpdateTime\n";
202          $response = <$sock>;
203 <        if (!$response) {
203 >        if (!$response || $response eq "ERROR\n") {
204              print "The i-scream server did not give us a UDPUpdateTime.\n";
205              close($sock);
206              wait_then_retry();
207              next;
208          }
209 <        chop $response;
209 >        chomp $response;
210          $udp_update_time = $response;
211  
212          print $sock "TCPUpdateTime\n";
213          $response = <$sock>;
214 <        if (!$response) {
214 >        if (!$response || $response eq "ERROR\n") {
215              print "The i-scream server did not give us a TCPUpdateTime.\n";
216              close($sock);
217              wait_then_retry();
218              next;
219          }
220 <        chop $response;
220 >        chomp $response;
221          $tcp_update_time = $response;
222      
223          print "UDP packet period: $udp_update_time seconds.\nTCP heartbeat period: $tcp_update_time seconds.\n";
# Line 222 | Line 241 | sub tcp_configure() {
241              wait_then_retry();
242              next;
243          }
244 <        chop $response;
226 <        $response =~ /^(.*);(.*);(.*)/;
244 >        chomp $response;
245          if ($response eq "ERROR") {
246              print "There are no active configured filters for your host.\n";
247              close($sock);
248              wait_then_retry();
249              next;
250          }
251 +        $response =~ /^(.*);(.*);(.*)/;
252          ($filter_addr, $udp_port, $tcp_port) = ($1, $2, $3);
253          unless (defined($filter_addr) && defined($udp_port) && defined($tcp_port)) {
254              print "Failed: Filter address response from server did not make sense: $response\n";

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines