fixed bug in config parser

git-svn: trunk@354
remotes/push_mirror/metadata
Tomasz Kojm 22 years ago
parent 831b61bf2e
commit 0deebced4d
  1. 5
      clamav-devel/ChangeLog
  2. 2
      clamav-devel/clamd/cfgfile.c
  3. 94
      clamav-devel/docs/html/node46.html
  4. 90
      clamav-devel/docs/html/node47.html
  5. 81
      clamav-devel/docs/html/node48.html
  6. 81
      clamav-devel/docs/html/node49.html
  7. 346
      clamav-devel/docs/html/node50.html
  8. 113
      clamav-devel/docs/html/node51.html
  9. 83
      clamav-devel/docs/html/node52.html
  10. 92
      clamav-devel/docs/html/node53.html
  11. 75
      clamav-devel/docs/html/node54.html
  12. 72
      clamav-devel/docs/html/node55.html
  13. 77
      clamav-devel/docs/html/node56.html
  14. 75
      clamav-devel/docs/html/node57.html
  15. 79
      clamav-devel/docs/html/node58.html

@ -1,3 +1,8 @@
Sat Feb 28 23:06:43 CET 2004 (tk)
---------------------------------
* config parser: fixed segfault with empty argument for numerical option
(thanks to Luca 'NERvOus' Gibelli <nervous*nervous.it>)
Sat Feb 28 13:06:16 CET 2004 (tk)
---------------------------------
* libclamav: readdb: fixed segmentation fault when virus name is empty

@ -150,7 +150,7 @@ struct cfgstruct *parsecfg(const char *cfgfile)
copt = regcfg(copt, name, arg, 0);
break;
case OPT_NUM:
if(!isnumb(arg)) {
if(!arg || !isnumb(arg)) {
fprintf(stderr, "ERROR: Parse error at line %d: Option %s requires numerical argument.\n", line, name);
return NULL;
}

@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Database reloading</TITLE>
<META NAME="description" CONTENT="Database reloading">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node47.html">
<LINK REL="previous" HREF="node45.html">
<LINK REL="up" HREF="node44.html">
<LINK REL="next" HREF="node47.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html769"
HREF="node47.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html765"
HREF="node44.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html759"
HREF="node45.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html767"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html770"
HREF="node47.html">Scan engine</A>
<B> Up:</B> <A NAME="tex2html766"
HREF="node44.html">LibClamAV</A>
<B> Previous:</B> <A NAME="tex2html760"
HREF="node45.html">General API</A>
&nbsp <B> <A NAME="tex2html768"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00072000000000000000">
Database reloading</A>
</H2>
The most important thing is to keep the memory database representation up
to date. You can watch database changes with the <I>cl_stat</I> functions
family:
<PRE>
int cl_statinidir(const char *dirname, struct cl_stat *dbstat);
int cl_statchkdir(const struct cl_stat *dbstat);
int cl_statfree(struct cl_stat *dbstat);
</PRE>
Initialization:
<PRE>
struct cl_stat dbstat;
memset(&amp;dbstat, 0, sizeof(struct cl_stat));
cl_statinidir(dbdir, &amp;dbstat);
</PRE>
To check for a change you only need to call the following function:
<PRE>
if(cl_statchkdir(&amp;dbstat) == 1) {
reload_database...;
cl_statfree(&amp;dbstat);
cl_statinidir(cl_retdbdir(), &amp;dbstat);
}
</PRE>
Remember to reinitialize the structure after a reload.
<P>
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,90 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Scan engine</TITLE>
<META NAME="description" CONTENT="Scan engine">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node48.html">
<LINK REL="previous" HREF="node46.html">
<LINK REL="up" HREF="node44.html">
<LINK REL="next" HREF="node48.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html781"
HREF="node48.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html777"
HREF="node44.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html771"
HREF="node46.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html779"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html782"
HREF="node48.html">CVD format</A>
<B> Up:</B> <A NAME="tex2html778"
HREF="node44.html">LibClamAV</A>
<B> Previous:</B> <A NAME="tex2html772"
HREF="node46.html">Database reloading</A>
&nbsp <B> <A NAME="tex2html780"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00073000000000000000"></A><A NAME="engine"></A>
<BR>
Scan engine
</H2>
New versions of Clam AntiVirus use a mutation of the Aho-Corasick
pattern matching algorithm. The algorithm is based a finite state pattern
matching automaton [<A
HREF="node57.html#clr">1</A>] and it's a generalization of the famous
Knuth-Morris-Pratt algorithm. Please take a look at the <I>matcher.h</I>
for data type definitions. The automaton is represented by a trie. It
is a rooted tree with some specific properties [<A
HREF="node57.html#acwww">2</A>]. Every node
of the trie represents some state of the automaton. In our implementation,
the node is defined as follows:
<PRE>
struct cl_node {
short int islast;
struct cli_patt *list;
int maxpatlen;
struct node *next[NUM_CHILDS], *trans[NUM_CHILDS], *fail;
};
</PRE>
[To be continued...]
<P>
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,81 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>CVD format</TITLE>
<META NAME="description" CONTENT="CVD format">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="previous" HREF="node47.html">
<LINK REL="up" HREF="node44.html">
<LINK REL="next" HREF="node49.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html791"
HREF="node49.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html787"
HREF="node44.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html783"
HREF="node47.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html789"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html792"
HREF="node49.html">Credits</A>
<B> Up:</B> <A NAME="tex2html788"
HREF="node44.html">LibClamAV</A>
<B> Previous:</B> <A NAME="tex2html784"
HREF="node47.html">Scan engine</A>
&nbsp <B> <A NAME="tex2html790"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00074000000000000000">
CVD format</A>
</H2>
CVD (ClamAV Virus Database) is a digitally signed tarball file that
contains one or more databases. You can find some useful information in the
ASCII header of the file. It's a 512 bytes long string with the following
colon separated fields:
<PRE>
ClamAV-VDB:build time:version:number of signatures:functionality
level required:MD5 checksum:digital signature:builder name
</PRE>
and can be easily parsed by scripts or with <I>sigtool -info</I>.
There are two CVD databases in ClamAV: <I>main.cvd</I> and <I>daily.cvd</I>
for a daily updates. You can use <I>sigtool</I> to unpack a CVD file
(<I>-unpack</I>) and to list virus names (<I>-list-sigs</I>).
<P>
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,81 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Credits</TITLE>
<META NAME="description" CONTENT="Credits">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node52.html">
<LINK REL="previous" HREF="node44.html">
<LINK REL="up" HREF="clamdoc.html">
<LINK REL="next" HREF="node50.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html803"
HREF="node50.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html799"
HREF="clamdoc.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html793"
HREF="node48.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html801"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html804"
HREF="node50.html">Contributors</A>
<B> Up:</B> <A NAME="tex2html800"
HREF="clamdoc.html">clamdoc</A>
<B> Previous:</B> <A NAME="tex2html794"
HREF="node48.html">CVD format</A>
&nbsp <B> <A NAME="tex2html802"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION00080000000000000000">
Credits</A>
</H1>
<P>
<BR><HR>
<!--Table of Child-Links-->
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
<UL>
<LI><A NAME="tex2html805"
HREF="node50.html">Contributors</A>
<LI><A NAME="tex2html806"
HREF="node51.html">Donors</A>
</UL>
<!--End of Table of Child-Links-->
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,346 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Contributors</TITLE>
<META NAME="description" CONTENT="Contributors">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node51.html">
<LINK REL="previous" HREF="node49.html">
<LINK REL="up" HREF="node49.html">
<LINK REL="next" HREF="node51.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html818"
HREF="node51.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html814"
HREF="node49.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html808"
HREF="node49.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html816"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html819"
HREF="node51.html">Donors</A>
<B> Up:</B> <A NAME="tex2html815"
HREF="node49.html">Credits</A>
<B> Previous:</B> <A NAME="tex2html809"
HREF="node49.html">Credits</A>
&nbsp <B> <A NAME="tex2html817"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00081000000000000000">
Contributors</A>
</H2>
The following people contributed to our project in some way (providing
patches, bug reports, technical support, documentation, good ideas...):
<UL>
<LI>Kamil Andrusz &lt;wizz*mniam.net&gt;
</LI>
<LI>Jean-Edouard BABIN &lt;Jeb*jeb.com.fr&gt;
</LI>
<LI>Marc Baudoin &lt;babafou*babafou.eu.org&gt;
</LI>
<LI>Rene Bellora &lt;rbellora*tecnoaccion.com.ar&gt;
</LI>
<LI>Hilko Bengen &lt;bengen*vdst-ka.inka.de&gt;
</LI>
<LI>Patrick Bihan-Faou &lt;patrick*mindstep.com&gt;
</LI>
<LI>Oliver Brandmueller &lt;ob*e-Gitt.NET&gt;
</LI>
<LI>Igor Brezac &lt;igor*ipass.net&gt;
</LI>
<LI>Brian Bruns &lt;bruns*2mbit.com&gt;
</LI>
<LI>Len Budney &lt;lbudney*pobox.com&gt;
</LI>
<LI>Matt Butt &lt;mattb*cre8tiv.com&gt;
</LI>
<LI>Eric I. Lopez Carreon &lt;elopezc*technitrade.com&gt;
</LI>
<LI>Andrey Cherezov &lt;andrey*cherezov.koenig.su&gt;
</LI>
<LI>Nicholas Chua &lt;nicholas*ncmbox.net&gt;
</LI>
<LI>Christoph Cordes &lt;ib*precompiled.de&gt;
</LI>
<LI>Eugene Crosser &lt;crosser*rol.ru&gt;
</LI>
<LI>Damien Curtain &lt;damien*pagefault.org&gt;
</LI>
<LI>Krisztian Czako &lt;slapic*linux.co.hu&gt;
</LI>
<LI>Diego d'Ambra &lt;da*softcom.dk&gt;
</LI>
<LI>Michael Dankov &lt;misha*btrc.ru&gt;
</LI>
<LI>Alejandro Dubrovsky &lt;s328940*student.uq.edu.au&gt;
</LI>
<LI>Magnus Ekdahl &lt;magnus*debian.org&gt;
</LI>
<LI>Jason Englander &lt;jason*englanders.cc&gt;
</LI>
<LI>Oden Eriksson &lt;oden.eriksson*kvikkjokk.net&gt;
</LI>
<LI>Andy Fiddaman &lt;af*jeamland.org&gt;
</LI>
<LI>Edison Figueira Junior &lt;edison*brc.com.br&gt;
</LI>
<LI>David Ford &lt;david+cert*blue-labs.org&gt;
</LI>
<LI>Free Oscar &lt;freeoscar*wp.pl&gt;
</LI>
<LI>Piotr Gackiewicz &lt;gacek*intertele.pl&gt;
</LI>
<LI>Jeremy Garcia &lt;jeremy*linuxquestions.org&gt;
</LI>
<LI>Nick Gazaloff &lt;nick*sbin.org&gt;
</LI>
<LI>Luca 'NERvOus' Gibelli &lt;nervous*nervous.it&gt;
</LI>
<LI>Wieslaw Glod &lt;wkg*x2.pl&gt;
</LI>
<LI>Matthew A. Grant &lt;grantma*anathoth.gen.nz&gt;
</LI>
<LI>Hrvoje Habjanic &lt;hrvoje.habjanic*zg.hinet.hr&gt;
</LI>
<LI>Michal Hajduczenia &lt;michalis*mat.uni.torun.pl&gt;
</LI>
<LI>Jean-Christophe Heger &lt;jcheger*acytec.com&gt;
</LI>
<LI>Anders Herbjornsen &lt;andersh*gar.no&gt;
</LI>
<LI>Paul Hoadley &lt;paulh*logixsquad.net&gt;
</LI>
<LI>Robert Hogan &lt;robert*roberthogan.net&gt;
</LI>
<LI>Przemyslaw Holowczyc &lt;doozer*skc.com.pl&gt;
</LI>
<LI>Thomas W. Holt Jr. &lt;twh*cohesive.net&gt;
</LI>
<LI>Douglas J Hunley &lt;doug*hunley.homeip.net&gt;
</LI>
<LI>Kurt Huwig &lt;kurt*iku-netz.de&gt;
</LI>
<LI>Andy Igoshin &lt;ai*vsu.ru&gt;
</LI>
<LI>Jay &lt;sysop-clamav*coronastreet.net&gt;
</LI>
<LI>Stephane Jeannenot &lt;stephane.jeannenot*wanadoo.fr&gt;
</LI>
<LI>Dave Jones &lt;dave*kalkbay.co.za&gt;
</LI>
<LI>Alex Kah &lt;alex*narfonix.com&gt;
</LI>
<LI>Stefan Kaltenbrunner &lt;mm-mailinglist*madness.at&gt;
</LI>
<LI>Kazuhiko &lt;kazuhiko*fdiary.net&gt;
</LI>
<LI>Tomasz Klim &lt;tomek*euroneto.pl&gt;
</LI>
<LI>Robbert Kouprie &lt;robbert*exx.nl&gt;
</LI>
<LI>Martin Kraft &lt;martin.kraft*fal.de&gt;
</LI>
<LI>Petr Kristof &lt;Kristof.P*fce.vutbr.cz&gt;
</LI>
<LI>Henk Kuipers &lt;henk*opensourcesolutions.nl&gt;
</LI>
<LI>Nigel Kukard &lt;nkukard*lbsd.net&gt;
</LI>
<LI>Dr Andrzej Kurpiel &lt;akurpiel*mat.uni.torun.pl&gt;
</LI>
<LI>Thomas Lamy &lt;Thomas.Lamy*in-online.net&gt;
</LI>
<LI>Marty Lee &lt;marty*maui.co.uk&gt;
</LI>
<LI>Dennis Leeuw &lt;dleeuw*made-it.com&gt;
</LI>
<LI>Martin Lesser &lt;admin-debian*bettercom.de&gt;
</LI>
<LI>Peter N Lewis &lt;peter*stairways.com.au&gt;
</LI>
<LI>Mike Loewen &lt;mloewen*sturgeon.cac.psu.edu&gt;
</LI>
<LI>David S. Madole &lt;david*madole.net&gt;
</LI>
<LI>Thomas Madsen &lt;tm*softcom.dk&gt;
</LI>
<LI>Bill Maidment &lt;bill*maidment.com.au&gt;
</LI>
<LI>Andrey V. Malyshev &lt;amal*krasn.ru&gt;
</LI>
<LI>Stefan Martig &lt;sm*officeco.ch&gt;
</LI>
<LI>Serhiy V. Matveyev &lt;matveyev*uatele.com&gt;
</LI>
<LI>Reinhard Max &lt;max*suse.de&gt;
</LI>
<LI>Brian May &lt;bam*debian.org&gt;
</LI>
<LI>Ken McKittrick &lt;klmac*usadatanet.com&gt;
</LI>
<LI>Chris van Meerendonk &lt;cvm*castel.nl&gt;
</LI>
<LI>Arkadiusz Miskiewicz &lt;misiek*pld-linux.org&gt;
</LI>
<LI>Mark Mielke &lt;mark*mark.mielke.cc&gt;
</LI>
<LI>Jo Mills &lt;Jonathan.Mills*frequentis.com&gt;
</LI>
<LI>Dustin Mollo &lt;dustin.mollo*sonoma.edu&gt;
</LI>
<LI>Doug Monroe &lt;doug*planetconnect.com&gt;
</LI>
<LI>Alex S Moore &lt;asmoore*edge.net&gt;
</LI>
<LI>Flinn Mueller&lt;flinn*activeintra.net&gt;
</LI>
<LI>Hendrik Muhs &lt;Hendrik.Muhs*student.uni-magdeburg.de&gt;
</LI>
<LI>Farit Nabiullin <TT><A NAME="tex2html58"
HREF="http://program.farit.ru">http://program.farit.ru</A></TT>
</LI>
<LI>Wojciech Noworyta &lt;wnow*konarski.edu.pl&gt;
</LI>
<LI>Joe Oaks &lt;joe.oaks*hp.com&gt;
</LI>
<LI>Washington Odhiambo &lt;wash*wananchi.com&gt;
</LI>
<LI>Masaki Ogawa &lt;proc*mac.com&gt;
</LI>
<LI>Martijn van Oosterhout &lt;kleptog*svana.org&gt;
</LI>
<LI>OpenAntiVirus Team (<TT><A NAME="tex2html59"
HREF="http://www.OpenAntiVirus.org">http://www.OpenAntiVirus.org</A></TT>)
</LI>
<LI>Tomasz Papszun &lt;tomek*lodz.tpsa.pl&gt;
</LI>
<LI>Eric Parsonage &lt;eric*eparsonage.com&gt;
</LI>
<LI>Oliver Paukstadt &lt;pstadt*stud.fh-heilbronn.de&gt;
</LI>
<LI>Rudolph Pereira &lt;r.pereira*isu.usyd.edu.au&gt;
</LI>
<LI>Ed Phillips &lt;ed*UDel.Edu&gt;
</LI>
<LI>Andreas Piesk &lt;Andreas.Piesk*heise.de&gt;
</LI>
<LI>Alex Pleiner &lt;pleiner*zeitform.de&gt;
</LI>
<LI>Ant La Porte &lt;ant*dvere.net&gt;
</LI>
<LI>Sergei Pronin &lt;sp*finndesign.fi&gt;
</LI>
<LI>Thomas Quinot &lt;thomas*cuivre.fr.eu.org&gt;
</LI>
<LI>Ed Ravin &lt;eravin*panix.com&gt;
</LI>
<LI>David Sanchez &lt;dsanchez*veloxia.com&gt;
</LI>
<LI>David Santinoli &lt;david*santinoli.com&gt;
</LI>
<LI>Vijay Sarvepalli &lt;vssarvep*office.uncg.edu&gt;
</LI>
<LI>Martin Schitter
</LI>
<LI>Enrico Scholz &lt;enrico.scholz*informatik.tu-chemnitz.de&gt;
</LI>
<LI>Scsi &lt;scsi*softland.ru&gt;
</LI>
<LI>Ole Stanstrup &lt;ole*stanstrup.dk&gt;
</LI>
<LI>Richard Stevenson &lt;richard*endace.com&gt;
</LI>
<LI>Matt Sullivan &lt;matt*sullivan.gen.nz&gt;
</LI>
<LI>Dr Zbigniew Szewczak &lt;zssz*mat.uni.torun.pl&gt;
</LI>
<LI>Joe Talbott &lt;josepht*cstone.net&gt;
</LI>
<LI>Gernot Tenchio &lt;g.tenchio*telco-tech.de&gt;
</LI>
<LI>Masahiro Teramoto &lt;markun*onohara.to&gt;
</LI>
<LI>Trashware &lt;trashware*gmx.net&gt;
</LI>
<LI>Daniel Mario Vega &lt;dv5a*dc.uba.ar&gt;
</LI>
<LI>Laurent Wacrenier &lt;lwa*teaser.fr&gt;
</LI>
<LI>Nicklaus Wicker &lt;n.wicker*cnk-networks.de&gt;
</LI>
<LI>David Woakes &lt;david*mitredata.co.uk&gt;
</LI>
<LI>Troy Wollenslegel &lt;troy*intranet.org&gt;
</LI>
<LI>Leonid Zeitlin &lt;lz*europe.com&gt;
</LI>
<LI>Andoni Zubimendi &lt;andoni*lpsat.net&gt;
</LI>
</UL>
<P>
<HR>
<!--Navigation Panel-->
<A NAME="tex2html818"
HREF="node51.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html814"
HREF="node49.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html808"
HREF="node49.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html816"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html819"
HREF="node51.html">Donors</A>
<B> Up:</B> <A NAME="tex2html815"
HREF="node49.html">Credits</A>
<B> Previous:</B> <A NAME="tex2html809"
HREF="node49.html">Credits</A>
&nbsp <B> <A NAME="tex2html817"
HREF="node1.html">Contents</A></B>
<!--End of Navigation Panel-->
<ADDRESS>
Tomasz Kojm
2004-02-15
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,113 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Donors</TITLE>
<META NAME="description" CONTENT="Donors">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="previous" HREF="node50.html">
<LINK REL="up" HREF="node49.html">
<LINK REL="next" HREF="node52.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html827"
HREF="node52.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html823"
HREF="node49.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html819"
HREF="node50.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html825"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html828"
HREF="node52.html">Authors</A>
<B> Up:</B> <A NAME="tex2html824"
HREF="node49.html">Credits</A>
<B> Previous:</B> <A NAME="tex2html820"
HREF="node50.html">Contributors</A>
&nbsp <B> <A NAME="tex2html826"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00082000000000000000">
Donors</A>
</H2>
We received financial support from:
<UL>
<LI>ActiveIntra.net Inc. (<TT><A NAME="tex2html59"
HREF="http://www.activeintra.net">http://www.activeintra.net</A></TT>)
</LI>
<LI>Anonymous donor from Colorado, US
</LI>
<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html60"
HREF="http://www.dyndns.org">http://www.dyndns.org</A></TT>)
</LI>
<LI>Electric Embers
</LI>
<LI>epublica
</LI>
<LI>David Eriksson (<TT><A NAME="tex2html61"
HREF="http://www.2good.nu">http://www.2good.nu</A></TT>)
</LI>
<LI>Explido Software USA Inc. (<TT><A NAME="tex2html62"
HREF="http://www.explido.us">http://www.explido.us</A></TT>)
</LI>
<LI>David Farrick
</LI>
<LI>Andries Filmer (<TT><A NAME="tex2html63"
HREF="http://www.netexpo.nl">http://www.netexpo.nl</A></TT>)
</LI>
<LI>Jeremy Garcia (<TT><A NAME="tex2html64"
HREF="http://www.linuxquestions.org">http://www.linuxquestions.org</A></TT>)
</LI>
<LI>Invisik Corporation (<TT><A NAME="tex2html65"
HREF="http://www.invisik.com">http://www.invisik.com</A></TT>)
</LI>
<LI>Keith (<TT><A NAME="tex2html66"
HREF="http://www.textpad.com">http://www.textpad.com</A></TT>)
</LI>
<LI>Brad Koehn
</LI>
<LI>Stephane Rault
</LI>
<LI>cheahch from Singapore
</LI>
<LI>Nicklaus Wicker &lt;n.wicker*cnk-networks.de&gt;
</LI>
</UL>
<P>
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,83 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Authors</TITLE>
<META NAME="description" CONTENT="Authors">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node57.html">
<LINK REL="previous" HREF="node49.html">
<LINK REL="up" HREF="clamdoc.html">
<LINK REL="next" HREF="node53.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html839"
HREF="node53.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html835"
HREF="clamdoc.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html829"
HREF="node51.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html837"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html840"
HREF="node53.html">Virus Database Developers</A>
<B> Up:</B> <A NAME="tex2html836"
HREF="clamdoc.html">clamdoc</A>
<B> Previous:</B> <A NAME="tex2html830"
HREF="node51.html">Donors</A>
&nbsp <B> <A NAME="tex2html838"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION00090000000000000000">
Authors</A>
</H1>
<BR><HR>
<!--Table of Child-Links-->
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
<UL>
<LI><A NAME="tex2html841"
HREF="node53.html">Virus Database Developers</A>
<LI><A NAME="tex2html842"
HREF="node54.html">Network management</A>
<LI><A NAME="tex2html843"
HREF="node55.html">Graphics</A>
<LI><A NAME="tex2html844"
HREF="node56.html">Core developers</A>
</UL>
<!--End of Table of Child-Links-->
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,92 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Virus Database Developers</TITLE>
<META NAME="description" CONTENT="Virus Database Developers">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node54.html">
<LINK REL="previous" HREF="node52.html">
<LINK REL="up" HREF="node52.html">
<LINK REL="next" HREF="node54.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html855"
HREF="node54.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html851"
HREF="node52.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html845"
HREF="node52.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html853"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html856"
HREF="node54.html">Network management</A>
<B> Up:</B> <A NAME="tex2html852"
HREF="node52.html">Authors</A>
<B> Previous:</B> <A NAME="tex2html846"
HREF="node52.html">Authors</A>
&nbsp <B> <A NAME="tex2html854"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00091000000000000000">
Virus Database Developers</A>
</H2>
Virus database is a heart of every anti-virus software. The following people
care ClamAV's heart is in a good condition:
<UL>
<LI>aCaB &lt;acab*clamav.net&gt;
</LI>
<LI>Christoph Cordes &lt;ccordes*clamav.net&gt;
</LI>
<LI>Diego D'Ambra &lt;diego*clamav.net&gt;
</LI>
<LI>Jason Englander &lt;jason*clamav.net&gt;
</LI>
<LI>Tomasz Kojm &lt;tkojm*clamav.net&gt;
</LI>
<LI>Denis De Messemacker &lt;ddm*clamav.net&gt;
</LI>
<LI>Tomasz Papszun &lt;tomek*clamav.net&gt;
</LI>
</UL>
Our database includes the virus database (about 5000 signatures) from
<BR> <TT><A NAME="tex2html67"
HREF="OpenAntiVirus.org">OpenAntiVirus.org</A></TT>.
<P>
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,75 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Network management</TITLE>
<META NAME="description" CONTENT="Network management">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node55.html">
<LINK REL="previous" HREF="node53.html">
<LINK REL="up" HREF="node52.html">
<LINK REL="next" HREF="node55.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html867"
HREF="node55.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html863"
HREF="node52.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html857"
HREF="node53.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html865"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html868"
HREF="node55.html">Graphics</A>
<B> Up:</B> <A NAME="tex2html864"
HREF="node52.html">Authors</A>
<B> Previous:</B> <A NAME="tex2html858"
HREF="node53.html">Virus Database Developers</A>
&nbsp <B> <A NAME="tex2html866"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00092000000000000000">
Network management</A>
</H2>
Thanks to Luca 'NERvOus' Gibelli &lt;nervous*clamav.net&gt; you can
download our database from all the mirrors listed in <A HREF="node14.html#mirrors">2.8</A>. Luca
is also responsible for our main site <TT><A NAME="tex2html68"
HREF="www.clamav.net">www.clamav.net</A></TT>, mailing lists,
and the virus submission mechanism.
<P>
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,72 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Graphics</TITLE>
<META NAME="description" CONTENT="Graphics">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node56.html">
<LINK REL="previous" HREF="node54.html">
<LINK REL="up" HREF="node52.html">
<LINK REL="next" HREF="node56.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html879"
HREF="node56.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html875"
HREF="node52.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html869"
HREF="node54.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html877"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html880"
HREF="node56.html">Core developers</A>
<B> Up:</B> <A NAME="tex2html876"
HREF="node52.html">Authors</A>
<B> Previous:</B> <A NAME="tex2html870"
HREF="node54.html">Network management</A>
&nbsp <B> <A NAME="tex2html878"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00093000000000000000">
Graphics</A>
</H2>
The authors of the nice ClamAV logo (look at the title page) are Mia
Kalenius and Sergei Pronin &lt;sp*finndesign.fi&gt;.
<P>
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,77 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Core developers</TITLE>
<META NAME="description" CONTENT="Core developers">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="previous" HREF="node55.html">
<LINK REL="up" HREF="node52.html">
<LINK REL="next" HREF="node57.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html889"
HREF="node57.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html885"
HREF="node52.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html881"
HREF="node55.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html887"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html890"
HREF="node57.html">Bibliography</A>
<B> Up:</B> <A NAME="tex2html886"
HREF="node52.html">Authors</A>
<B> Previous:</B> <A NAME="tex2html882"
HREF="node55.html">Graphics</A>
&nbsp <B> <A NAME="tex2html888"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION00094000000000000000">
Core developers</A>
</H2>
Nigel Horne &lt;njh*clamav.net&gt; is a very active ClamAV developer
responsible for the mbox code and clamav-milter. Trog
trog*clamav.net&gt; developes the OLE2 code and introduces new
features into ClamAV. Thomas Lamy is a great memory leak killer and code
stablizer. Tomasz Kojm (me) navigates the project and keeps an eye on
everything 8-)
<P>
Tomasz Kojm &lt;tkojm*clamav.net&gt;
<P>
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,75 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Bibliography</TITLE>
<META NAME="description" CONTENT="Bibliography">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="next" HREF="node58.html">
<LINK REL="previous" HREF="node52.html">
<LINK REL="up" HREF="clamdoc.html">
<LINK REL="next" HREF="node58.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html901"
HREF="node58.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next.png"></A>
<A NAME="tex2html897"
HREF="clamdoc.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html891"
HREF="node56.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html899"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html902"
HREF="node58.html">About this document ...</A>
<B> Up:</B> <A NAME="tex2html898"
HREF="clamdoc.html">clamdoc</A>
<B> Previous:</B> <A NAME="tex2html892"
HREF="node56.html">Core developers</A>
&nbsp <B> <A NAME="tex2html900"
HREF="node1.html">Contents</A></B>
<BR><BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION000100000000000000000">
Bibliography</A>
</H2><DL COMPACT><DD><P></P><DT><A NAME="clr">1</A>
<DD>
Cormen, Leiserson, Rivest: <I>Introduction to Algorithms</I>,
Chapter 34, MIT Press.
<P></P><DT><A NAME="acwww">2</A>
<DD>
<FONT SIZE="-1"> <TT><A NAME="tex2html69"
HREF="http://www-sr.informatik.uni-tuebingen.de/~buehler/AC/AC.html">http://www-sr.informatik.uni-tuebingen.de/~buehler/AC/AC.html</A></TT></FONT>:
<BR> Aho-Corasick algorithm description
</DL><BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>

@ -0,0 +1,79 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2K.1beta (1.48)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>About this document ...</TITLE>
<META NAME="description" CONTENT="About this document ...">
<META NAME="keywords" CONTENT="clamdoc">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="clamdoc.css">
<LINK REL="previous" HREF="node57.html">
<LINK REL="up" HREF="clamdoc.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/share/latex2html/icons/next_g.png">
<A NAME="tex2html907"
HREF="clamdoc.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/share/latex2html/icons/up.png"></A>
<A NAME="tex2html903"
HREF="node57.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/share/latex2html/icons/prev.png"></A>
<A NAME="tex2html909"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/share/latex2html/icons/contents.png"></A>
<BR>
<B> Up:</B> <A NAME="tex2html908"
HREF="clamdoc.html">clamdoc</A>
<B> Previous:</B> <A NAME="tex2html904"
HREF="node57.html">Bibliography</A>
&nbsp <B> <A NAME="tex2html910"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION000110000000000000000">
About this document ...</A>
</H1>
<P>
This document was generated using the
<A HREF="http://www-texdev.mpce.mq.edu.au/l2h/docs/manual/"><STRONG>LaTeX</STRONG>2<tt>HTML</tt></A> translator Version 2K.1beta (1.48)
<P>
Copyright &#169; 1993, 1994, 1995, 1996,
<A HREF="http://cbl.leeds.ac.uk/nikos/personal.html">Nikos Drakos</A>,
Computer Based Learning Unit, University of Leeds.
<BR>
Copyright &#169; 1997, 1998, 1999,
<A HREF="http://www.maths.mq.edu.au/~ross/">Ross Moore</A>,
Mathematics Department, Macquarie University, Sydney.
<P>
The command line arguments were: <BR>
<STRONG>latex2html</STRONG> <TT><A NAME="tex2html70"
HREF="../clamdoc.tex">clamdoc.tex</A></TT>
<P>
The translation was initiated by Tomasz Kojm on 2004-02-11
<BR><HR>
<ADDRESS>
Tomasz Kojm
2004-02-11
</ADDRESS>
</BODY>
</HTML>
Loading…
Cancel
Save