Burton,

Finally I get the undefined refference problem fixed.
The problem was that in plugins/sflowPlugin the function was defined as 
sFlowPluginEntryFctn, but in plugins.c it sas declared as 
sflowPluginEntryFctn
f!=F :-)
Can someone check the source code?
Also, there were several bugs in the makefile (nothink to do with the
resource kit). If someone is interested please let me know.
V.

> -----Original Message-----
> From: Chaloupka, Vaclav 
> Sent: Monday, 06 May, 2002 09:24
> To: 'Burton M. Strauss III'; Ntop
> Subject: RE: MinGW (was: ntop filter expression)
> 
> 
> Burton,
> Please do not get excited. I do have MinGW from the very 
> beginning and I am following the instructions from the very 
> beginning. I am just sayng that when I run the make program 
> (from MinGW) using command make -f makefile.mingw, it reads 
> the makefile.mingw file, one of the lines says        $(CC) 
> $(CFLAGS) -o $@ -c $< which is calling the gcc compiled 
> (mingw) but the other line says @rm -f $@ which...and I 
> suppose it just passes the rm -f command to the shell. And 
> the shell happends to be NT in my case and it does not know 
> the rm command, exept I install the posix library, which is 
> part of the resource kit.
> Anyhow, I am over that. Now I have this strange trouble with 
> unresolved refference to the sflowplugin unresolved 
> reference. If I do nm to the .o file I can see the funcion 
> there, but the gcc (mingw) can not resolve the refference to 
> it. It looks weird. I was thinking maybe he is confused by 
> the / in the path? NT uses \ but in the makefile I used 
> unix-like / instead??? I will try again.
> 
> Anyhow, the bottom line is, I do follow the instructions line 
> by line and it does not work (except I use Windows NT not 
> Windows 2000, does it make any difference?). Then I I trying 
> to figure out why, and trying again and again, but I am not 
> too succesfull in that.
> 
> The second line from the bottom is, that I did not want to 
> get into that, If I would do it for fun at home I would just 
> compile it on my linux (Mandrake) PC, but I need it here for 
> NT. So I just paid for the registration and I get compiled 
> program with filtering not working so I have nothink and I am 
> spending time with the source code anyhow. If it would work I 
> would have no problem with it.
> 
> Wouldn't it be easier if you would just put the version 2.1 
> on the ftp server where I downloaded the 2.0 so I can stop 
> sending these emails and take your precious time?
> 
> Cheers
> 
> V.
> > -----Original Message-----
> > From: Burton M. Strauss III [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, 05 May, 2002 23:36
> > To: Ntop
> > Cc: [EMAIL PROTECTED]
> > Subject: RE: MinGW (was: ntop filter expression)
> > 
> > 
> > Repeat after me:   MinGW IS NOT the NT resource kit
> >                    MinGW IS NOT the NT resource kit
> > OK... got that?
> >                    MinGW IS NOT the NT resource kit
> > 
> > The NT resource kit has a couple of standard Unix utilities 
> > ported to NT.
> > 
> > MinGW is a complete gnu/gcc type environment ported to Windows.
> > 
> > YOU WILL NOT BE ABLE TO COMPILE OR RUN ntop just using the 
> > resource kit.
> > Don't even bother trying.
> > 
> > Also, the ntop source is highly tuned to the Win32 port of 
> > gcc provided by
> > MinGW...  It won't compile with Microsoft's Visual C++ or 
> > whatever compiler.
> > 
> > Installing MinGW isn't a big deal - last I looked there were 
> > executable (binary)
> > packages with an installer.
> > 
> > 1. Install MinGW
> > 2. Follow the instructions in BUILD-MINGW.txt
> > 
> > -----Burton
> > 
> > 
> > 
> > 
> > -----Original Message-----
> > From: Chaloupka, Vaclav [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, May 05, 2002 2:55 PM
> > To: 'Burton M. Strauss III'
> > Subject: RE: MinGW (was: ntop filter expression)
> > 
> > 
> > Burton,
> > thanks a lot for lengthy email. I will keep trying and if I 
> > do not succeed I
> > guess we'll get back to you (or we will buy RMON2 probe and 
> > use Concord or
> > NGenius which we have for WAN probes ;-).
> > 
> > I get confused somehow when I saw
> > .c.o:
> >     @rm -f $@
> > and
> > $(PROG): $(OBJ)
> >     @rm -f $@
> > I though rm -f is just passing rm to the shell (NT). Anyhow, 
> > I do not thing
> > it is important on first run as the .o files do not exist. 
> > (but then it
> > should be rather -rm to ignore error if the file does not 
> > exist, right?).
> > 
> > Also
> > version.c:
> >     -rm $@
> >     echo "char version[] = \"$(VERSION)\";" > $@
> >     echo "char osName[]  = \"$(OSNAME)\";" >> $@
> >     echo "char author[]  = \"Luca Deri <[EMAIL PROTECTED]>\";" >> $@
> > looks like calling the NT echo command. But this is Unix 
> > syntax, NT would
> > not use \" for " and it did  print even the first "s. So I 
> > just fixed the
> > version.c afterwards, no big deal.
> > 
> > But what really did not work for me was this: Makefile.Mingw 
> > uses this list
> > of objects:
> > CSRC =      ntop.c pbuf.c util.c http.c vendor.c report.c qsort.c \
> >     globals-core.c globals-report.c address.c admin.c \
> >     dataFormat.c emitter.c event.c graph.c hash.c \
> >     initialize.c leaks.c logger.c main.c ntop_win32.c \
> >     reportUtils.c traffic.c plugin.c webInterface.c term.c \
> >     netflow.c sql.c rules.c plugins/icmpPlugin.c \
> >     plugins/lastSeenPlugin.c plugins/nfsPlugin.c \
> >     plugins/rmonPlugin.c plugins/wapPlugin.c regex.c \
> >     plugins/rmonPlugin.c plugins/wapPlugin.c \
> >     plugins/sflowPlugin.c regex.c \
> >     protocols.c sessions.c
> > 
> > But event.c, rmonPlugin.c, Rules.c and wapPlugin.c have 
> been moved to
> > ntop/obsolete directory, so it can not find them. So I just 
> > excluded them
> > from the CSRC list....and I run in the trouble with the 
> > undefined reference.
> > Anyhow, I will check where it is defined and keep trying. 
> > Maybe I shoulnd
> > not remove the 4 files from the CSRC but rather move move 
> the files...
> > 
> > Thanks again for your help
> > 
> > Vaclav
> > > -----Original Message-----
> > > From: Burton M. Strauss III [mailto:[EMAIL PROTECTED]]
> > > Sent: Sunday, 05 May, 2002 17:31
> > > To: Ntop
> > > Cc: Chaloupka, Vaclav
> > > Subject: MinGW (was: ntop filter expression)
> > >
> > >
> > > Basically, I'm going to direct you to the MinGW home page,
> > > http://www.mingw.org.
> > > You need to read and understand what MinGW is - I will tell
> > > you it's not got
> > > ANYTHING to do with the NT resource kit, it's a minimal
> > > Unix-like environment
> > > running under Windows.
> > >
> > > "MinGW is a collection of header files and import libraries
> > > that allow one to
> > > use GCC and produce native Windows32 programs that do not
> > > rely on any 3rd-party
> > > DLLs. The current set of tools include GNU Compiler
> > > Collection (GCC), GNU Binary
> > > Utilities (Binutils), GNU debugger (Gdb) , GNU make, and a
> > > assorted other
> > > utilities. We are currently working on creating a complete
> > > set of Mingw-hosted
> > > GNU toolchain, and looking for volunteers.
> > >
> > > At the basic level, MinGW is a set of include files and
> > > import libraries that
> > > allow a console-mode program to use Microsoft's standard C
> > > runtime library
> > > MSVCRT.DLL (available on all NT systems, and on all stock
> > > Win9x after the
> > > original Windows 95 release (for which it can be installed
> > > separately)). Using
> > > this basic runtime, you can write console-mode ANSI compliant
> > > programs using GCC
> > > and use some of the extensions offered by MS C runtime, but
> > > cannot use the
> > > features provided by the Windows32 API. The next critical
> > > piece is the w32api
> > > package, which is a set of includes and import libraries to
> > > enable the use of
> > > Windows32 API, and combined with the basic runtime, you
> > > (potentially) have full
> > > access to both the C Runtime (CRT) and Windows32 API
> > > functionality. Please see
> > > the licensing information on the various pieces."
> > >
> > > You will need to read and follow the instructions there to 
> > get a MinGW
> > > environment up.
> > >
> > > Then you can successfully follow the docs/BUILD-MINGW.txt
> > > file to build ntop.
> > >
> > > -----Burton
> > >
> > > PS: If you're interested in fee-based support, contact me 
> > privately...
> > >
> > >
> > > -----Original Message-----
> > > From: Chaloupka, Vaclav [mailto:[EMAIL PROTECTED]]
> > > Sent: Sunday, May 05, 2002 7:23 AM
> > > To: '[EMAIL PROTECTED]'
> > > Cc: 'Burton M. Strauss III'
> > > Subject: RE: [Ntop] ntop filter expression
> > >
> > >
> > > After spending weekend trying to build 2.0.99 and the lates
> > > built in MinGW I
> > > am back.
> > >
> > > > 1. Try ntop -Z
> > > > (it should complain that -Z isn't a valid parameter)
> > > it displays help
> > >
> > > > 2. Try ntop -- -t 3 ...
> > > still the same - it ignores the filter expression
> > >
> > > > 3. You can download the 2.0.99 source and build it yourself...
> > > > docs/BUILD-MinGW.txt
> > > I did download the latest snapshoot and the 2.0.99
> > > (ntop-02-04-03) and I did
> > > follow instructions in docs/BUILD-MinGW.txt but I have not 
> > succeeded.
> > > - The makefile does not seem to be for NT (it uses some unix
> > > commands like
> > > rm etc..., anyhow, I installed the NT resourcekit which 
> > does have the
> > > commands).
> > > - The makefile tried to compile some files which are in 
> the obsolete
> > > directory. So I have deleted their name from the
> > > makefile....it looks like
> > > the makefile is not the latest one ;-)
> > > - it did not succeed compiling the files from plugins
> > > directory...I compiled
> > > them maually
> > > ...so I get at the end of compilation, but...
> > > plugin.o(.text+0x214):plugin.c: undefined reference to
> > > `sflowPluginEntryFctn'
> > >
> > > ...and I gave up.
> > >
> > > Well I knew the compilation in NT would not be straight
> > > forward and using
> > > linux or solaris is not an option for me, that's why I have
> > > registered to
> > > get the compiled version. Unfortunatelly the filters seems
> > > not to work in
> > > 2.0 under NT. Can someone please compile the NT 2.0.99
> > > version (or whatever
> > > version supporting the -B parameter) and put to the ftp
> > > server so I can
> > > download it. Thank you.
> > >
> > > Kind Regards
> > >
> > > Vaclav Chaloupka
> > >
> > > > -----Original Message-----
> > > > From: Burton M. Strauss III [mailto:[EMAIL PROTECTED]]
> > > > Sent: Friday, 03 May, 2002 16:04
> > > > To: Ntop
> > > > Cc: Chaloupka, Vaclav
> > > > Subject: RE: [Ntop] ntop filter expression
> > > >
> > > >
> > > > MinGW has some limitations, but I thought that getopt would
> > > > work.  It almost
> > > > looks like it is totally ignoring the options...
> > > >
> > > > 1. Try ntop -Z
> > > > (it should complain that -Z isn't a valid parameter)
> > > >
> > > > 2. Try ntop -- -t 3 ...
> > > >
> > > > 3. You can download the 2.0.99 source and build it yourself...
> > > > docs/BUILD-MinGW.txt
> > > >
> > > > The demo on www.ntop.org is 2.0.1, which supports -B:
> > > >
> > > >     ntop -B "src or dst 192.168.42.1" -t 5
> > > > ...
> > > > 03/May/2002 08:59:45 [...] Set filter "src  or dst
> > > > 192.168.42.1" on device ....
> > > >
> > > > I don't know wrt 2.0...  the usual recommendation is to run a
> > > > more recent
> > > > version using the -B parameter.
> > > >
> > > >
> > > >
> > > > -----Burton
> > > >
> > > > PS: all replies should go to the list, not me personally
> > > unless you're
> > > > interested in paid support...
> > > >
> > > > -----Original Message-----
> > > > From: Chaloupka, Vaclav [mailto:[EMAIL PROTECTED]]
> > > > Sent: Friday, May 03, 2002 7:30 AM
> > > > To: '[EMAIL PROTECTED]'
> > > > Subject: RE: [Ntop] ntop filter expression
> > > >
> > > >
> > > > c:\Program Files\ntop-Win32>ntop.exe -t 3 "src host
> > > > 54.111.51.32 or dst host
> > > > 54.
> > > > 111.51.32
> > > > Wait please: ntop is coming up...
> > > > 03/May/2002 14:28:54 Initializing IP services...
> > > > 03/May/2002 14:28:54 Initializing GDBM...
> > > > 03/May/2002 14:28:54 Initializing network devices...
> > > > 03/May/2002 14:28:54 Found interface [index=0]
> > > > '\Device\Packet_CpqNF31'
> > > > 03/May/2002 14:28:55 ntop v.2.0 MT [WinNT/2K/XP] 
> > (27/12/2001 build)
> > > > 03/May/2002 14:28:55 Listening on [\Device\Packet_CpqNF31]
> > > > 03/May/2002 14:28:55 Copyright 1998-2001 by Luca Deri
> > > <[EMAIL PROTECTED]>
> > > > 03/May/2002 14:28:55 Get the freshest ntop from 
> > http://www.ntop.org/
> > > > 03/May/2002 14:28:55 Initializing...
> > > > 03/May/2002 14:28:55 Loading plugins (if any)...
> > > > 03/May/2002 14:28:55 Welcome to icmpWatchPlugin. (C) 1999 by
> > > > Luca Deri.
> > > > 03/May/2002 14:28:55 Welcome to nfsWatchPlugin. (C) 1999 by
> > > Luca Deri.
> > > > 03/May/2002 14:28:55 Resetting traffic statistics...
> > > > 03/May/2002 14:28:57 Started thread (184) for network
> > > packet analyser.
> > > > 03/May/2002 14:28:57 Started thread (136) for host traffic
> > > statistics.
> > > > 03/May/2002 14:28:57 Started thread (124) for throughput update.
> > > > 03/May/2002 14:28:57 Started thread (188) for idle hosts 
> > detection.
> > > > 03/May/2002 14:28:57 Started thread (192) for idle TCP
> > > > sessions detection.
> > > > 03/May/2002 14:28:57 Started thread (200) for DNS address
> > > resolution.
> > > > 03/May/2002 14:28:57 Started thread (204) for address purge.
> > > > 03/May/2002 14:28:57 Initializing plugins (if any)...
> > > > 03/May/2002 14:28:57 Waiting for HTTP connections on 
> port 3000...
> > > > 03/May/2002 14:28:57 Sniffying...
> > > > 03/May/2002 14:28:58 Started thread (224) for network packet
> > > > sniffing on
> > > > \Device
> > > > \Packet_CpqNF31.
> > > > 03/May/2002 14:29:13 Extending hash: [old=32, new=48]
> > > >
> > > > Vaclav
> > > >
> > > > > -----Original Message-----
> > > > > From: Burton Strauss [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Friday, 03 May, 2002 14:29
> > > > > To: Chaloupka, Vaclav
> > > > > Subject: RE: [Ntop] ntop filter expression
> > > > >
> > > > >
> > > > > Add -t 3 (trace level) to your startup... that should print
> > > > > out the info messages...
> > > > >
> > > > > -----Burton
> > > > >
> > > > > ---------- Original Message ----------------------------------
> > > > > From: "Chaloupka, Vaclav" <[EMAIL PROTECTED]>
> > > > > Date:  Fri, 03 May 2002 08:16:51 -0400
> > > > >
> > > > > >I did check that but I haven't seen one. Ok, here it is.
> > > > > >
> > > > > >c:\Program Files\ntop-Win32>ntop.exe "src host 54.111.51.32
> > > > > or dst host
> > > > > >54.111.5
> > > > > >1.32"
> > > > > >Wait please: ntop is coming up...
> > > > > >03/May/2002 14:01:07 Initializing IP services...
> > > > > >03/May/2002 14:01:07 Initializing GDBM...
> > > > > >03/May/2002 14:01:07 Initializing network devices...
> > > > > >03/May/2002 14:01:07 Found interface [index=0]
> > > > > '\Device\Packet_CpqNF31'
> > > > > >03/May/2002 14:01:07 ntop v.2.0 MT [WinNT/2K/XP]
> > > (27/12/2001 build)
> > > > > >03/May/2002 14:01:07 Listening on [\Device\Packet_CpqNF31]
> > > > > >03/May/2002 14:01:07 Copyright 1998-2001 by Luca Deri
> > > > <[EMAIL PROTECTED]>
> > > > > >03/May/2002 14:01:07 Get the freshest ntop from
> > > > http://www.ntop.org/
> > > > > >03/May/2002 14:01:07 Initializing...
> > > > > >03/May/2002 14:01:07 Loading plugins (if any)...
> > > > > >03/May/2002 14:01:08 Welcome to icmpWatchPlugin. (C) 1999 by
> > > > > Luca Deri.
> > > > > >03/May/2002 14:01:08 Welcome to nfsWatchPlugin. (C) 1999 by
> > > > > Luca Deri.
> > > > > >03/May/2002 14:01:08 Resetting traffic statistics...
> > > > > >03/May/2002 14:01:09 Started thread (184) for network packet
> > > > > analyser.
> > > > > >03/May/2002 14:01:09 Started thread (136) for host traffic
> > > > > statistics.
> > > > > >03/May/2002 14:01:10 Started thread (124) for 
> > throughput update.
> > > > > >03/May/2002 14:01:10 Started thread (188) for idle hosts
> > > detection.
> > > > > >03/May/2002 14:01:10 Started thread (192) for idle TCP
> > > > > sessions detection.
> > > > > >03/May/2002 14:01:10 Started thread (200) for DNS address
> > > > resolution.
> > > > > >03/May/2002 14:01:10 Started thread (204) for address purge.
> > > > > >03/May/2002 14:01:10 Initializing plugins (if any)...
> > > > > >03/May/2002 14:01:10 Waiting for HTTP connections on 
> > port 3000...
> > > > > >03/May/2002 14:01:10 Sniffying...
> > > > > >03/May/2002 14:01:10 Started thread (224) for network packet
> > > > > sniffing on
> > > > > >\Device
> > > > > >\Packet_CpqNF31.
> > > > > >03/May/2002 14:01:17 Extending hash: [old=32, new=48]
> > > > > >
> > > > > >No mention of filter....
> > > > > >
> > > > > >If I do
> > > > > >c:\Program Files\ntop-Win32>ntop blahblah
> > > > > >Wait please: ntop is coming up...
> > > > > >03/May/2002 14:02:40 Initializing IP services...
> > > > > >03/May/2002 14:02:40 Initializing GDBM...
> > > > > >03/May/2002 14:02:40 Initializing network devices...
> > > > > >03/May/2002 14:02:40 Found interface [index=0]
> > > > > '\Device\Packet_CpqNF31'
> > > > > >03/May/2002 14:02:40 ntop v.2.0 MT [WinNT/2K/XP]
> > > (27/12/2001 build)
> > > > > >03/May/2002 14:02:40 Listening on [\Device\Packet_CpqNF31]
> > > > > >03/May/2002 14:02:40 Copyright 1998-2001 by Luca Deri
> > > > <[EMAIL PROTECTED]>
> > > > > >03/May/2002 14:02:41 Get the freshest ntop from
> > > > http://www.ntop.org/
> > > > > >03/May/2002 14:02:41 Initializing...
> > > > > >03/May/2002 14:02:41 Loading plugins (if any)...
> > > > > >03/May/2002 14:02:41 Welcome to icmpWatchPlugin. (C) 1999 by
> > > > > Luca Deri.
> > > > > >03/May/2002 14:02:41 Welcome to nfsWatchPlugin. (C) 1999 by
> > > > > Luca Deri.
> > > > > >03/May/2002 14:02:41 Resetting traffic statistics...
> > > > > >03/May/2002 14:02:43 Started thread (184) for network packet
> > > > > analyser.
> > > > > >03/May/2002 14:02:43 Started thread (136) for host traffic
> > > > > statistics.
> > > > > >03/May/2002 14:02:43 Started thread (124) for 
> > throughput update.
> > > > > >03/May/2002 14:02:43 Started thread (188) for idle hosts
> > > detection.
> > > > > >03/May/2002 14:02:43 Started thread (192) for idle TCP
> > > > > sessions detection.
> > > > > >03/May/2002 14:02:43 Started thread (200) for DNS address
> > > > resolution.
> > > > > >03/May/2002 14:02:43 Started thread (204) for address purge.
> > > > > >03/May/2002 14:02:43 Initializing plugins (if any)...
> > > > > >03/May/2002 14:02:43 Waiting for HTTP connections on 
> > port 3000...
> > > > > >03/May/2002 14:02:43 Sniffying...
> > > > > >03/May/2002 14:02:44 Started thread (224) for network packet
> > > > > sniffing on
> > > > > >\Device
> > > > > >\Packet_CpqNF31.
> > > > > >03/May/2002 14:02:56 Extending hash: [old=32, new=48]
> > > > > >
> > > > > >...no mention of WRONG FILTER. (I do not believe blahblah is
> > > > > correct filter
> > > > > >expression, is it :-) Weird! It looks like it ignores the
> > > > > "non-options"
> > > > > >parameters.
> > > > > >
> > > > > >I tried the -R option it worked but understood that -R can't
> > > > > filter on IP
> > > > > >address, only on protocols. So this would not help. Anyhow,
> > > > > this seems to
> > > > > >work.
> > > > > >
> > > > > >c:\Program Files\ntop-Win32>ntop -R rules.txt
> > > > > >Wait please: ntop is coming up...
> > > > > >03/May/2002 14:06:08 Initializing IP services...
> > > > > >03/May/2002 14:06:08 Initializing GDBM...
> > > > > >03/May/2002 14:06:08 Initializing network devices...
> > > > > >03/May/2002 14:06:08 Found interface [index=0]
> > > > > '\Device\Packet_CpqNF31'
> > > > > >03/May/2002 14:06:08 ntop v.2.0 MT [WinNT/2K/XP]
> > > (27/12/2001 build)
> > > > > >03/May/2002 14:06:08 Listening on [\Device\Packet_CpqNF31]
> > > > > >03/May/2002 14:06:08 Copyright 1998-2001 by Luca Deri
> > > > <[EMAIL PROTECTED]>
> > > > > >03/May/2002 14:06:08 Get the freshest ntop from
> > > > http://www.ntop.org/
> > > > > >03/May/2002 14:06:08 Initializing...
> > > > > >03/May/2002 14:06:08 Parsing ntop rules...
> > > > > >...
> > > > > >
> > > > > >I guess it must be specific to the version we have. We have
> > > > > paid the fee to
> > > > > >get the version compiled for Win32 (as Windows does not come
> > > > > with compiler
> > > > > >bulit in :-). But it never worked. Do you know when can we
> > > > > get the newer
> > > > > >version which would work with the filters (2.0.99 I 
> believe?).
> > > > > >
> > > > > >Thanks again
> > > > > >
> > > > > >Regards
> > > > > >
> > > > > >Vaclav
> > > > > >
> > > > > >
> > > > > >-------------------------------------------------------------
> > > > > -----------------
> > > > > >Notice:  This e-mail message, together with any attachments,
> > > > > contains information of Merck & Co., Inc. (Whitehouse
> > > > > Station, New Jersey, USA) that may be confidential,
> > > > > proprietary copyrighted and/or legally privileged, and is
> > > > > intended solely for the use of the individual or entity named
> > > > > in this message.  If you are not the intended recipient, and
> > > > > have received this message in error, please immediately
> > > > > return this by e-mail and then delete it.
> > > > > >
> > > > > >=============================================================
> > > > > =================
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > > > __________________________________________________
> > > > > D O T E A S Y - "Join the web hosting revolution!"
> > > > >              http://www.doteasy.com
> > > > >
> > > >
> > >
> > >
> > > --------------------------------------------------------------
> > > ----------------
> > > Notice:  This e-mail message, together with any 
> > attachments, contains
> > > information of Merck & Co., Inc. (Whitehouse Station, New
> > > Jersey, USA) that may
> > > be confidential, proprietary copyrighted and/or legally
> > > privileged, and is
> > > intended solely for the use of the individual or entity named
> > > in this message.
> > > If you are not the intended recipient, and have received this
> > > message in error,
> > > please immediately return this by e-mail and then delete it.
> > >
> > > ==============================================================
> > > ================
> > >
> > >
> > >
> > 
> > --------------------------------------------------------------
> > ----------------
> > Notice: This e-mail message, together with any attachments, 
> > contains information
> > of Merck & Co., Inc. (Whitehouse Station, New Jersey, USA) 
> that may be
> > confidential, proprietary copyrighted and/or legally 
> > privileged, and is intended
> > solely for the use of the individual or entity named on this 
> > message.  If you
> > are not the intended recipient, and have received this 
> > message in error, please
> > immediately return this by e-mail and then delete it.
> > 
> > ==============================================================
> > ================
> > 
> > 
> > 
> 

------------------------------------------------------------------------------
Notice: This e-mail message, together with any attachments, contains information of 
Merck & Co., Inc. (Whitehouse Station, New Jersey, USA) that may be confidential, 
proprietary copyrighted and/or legally privileged, and is intended solely for the use 
of the individual or entity named on this message. If you are not the intended 
recipient, and have received this message in error, please immediately return this by 
e-mail and then delete it.

==============================================================================

_______________________________________________
Ntop mailing list
[EMAIL PROTECTED]
http://listgateway.unipi.it/mailman/listinfo/ntop

Reply via email to