ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/plugins/Makefile
Revision: 1.13
Committed: Mon Feb 24 20:18:49 2003 UTC (21 years, 2 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.12: +2 -3 lines
Log Message:
Fairly major commit. This will break the current version of ihost, but this
had to be done really to give Pete something to test the new ihost against.

The main change here is removal of the TCP Heartbeat functionality from the
filter. This meant the following features stopped working :-
  - Heartbeat testing
  - Configuration checking
  - Service checks

The heartbeat testing, specifically the monitor, now looks at the presence
of UDP packets instead. Before it just looked for the presence of a TCP
heartbeat packet, so the change their is fairly negligible. Of course this
means heartbeat testing now relies on the UDP working... but I don't see
this as a problem.

Configuration checking has been repositioned in to the filtermanager. This
is a backwards compatible change - the filtermanager should still perform
as it should for older hosts. But now there's an extra command to check the
configuration is up-to-date, with a similar format to the old TCP protocol
in the filter. (although we may optimise this soon)

The service checks are broken. This isn't a major issue for us as they were
pretty useless in the first place. The concept is good, but the checks are
just far too primitive. I expect at some point I'll work on a seperate
component that just monitors services, which will replace this function.

Further changes in the server include removal of the key checking code,
as this relied on a bolt on to the TCP heartbeat protocol to ship the
key. This got more akward than originally planned, so I'm happy to drop the
idea. In the long term we hope to replace this with a public key systems
for signing and even encryption.

Finally, general tidy up to remove other bits of code that check for
TCP heartbeat packets when they don't need to any more.

File Contents

# Content
1 # Makefile for uk.org.iscream.cms.server.filter
2 # $Id: Makefile,v 1.12 2002/03/21 17:44:51 tdb Exp $
3
4 # Config Include
5 include ../../../../../../../Config.inc
6
7 # Defining Filenames (these will be built)
8
9 JAVA = EnforceEssentialData__Plugin.java TypeChecker__Plugin.java\
10 HTTP__ServiceCheck.java SMTP__ServiceCheck.java\
11 POP3__ServiceCheck.java IMAP__ServiceCheck.java\
12 FTP__ServiceCheck.java SSH__ServiceCheck.java\
13 Telnet__ServiceCheck.java SourceChecker__Plugin.java
14
15 # Build Rule
16 all : DOBUILD
17 clean : DOCLEAN
18
19 # Main Include
20 include $(MKINC)