The web interface will not allow me to set a password for a null url (
like the NOTE: suggests ). The error says that both the url field and
user field must be non-null.

I had to change ntop/remoteInterfaceAPI/CPP/NtopHandle.cpp

To get ntop to compile on OpenBSD 2.8, I had to cast the length as a 

(socklen_t *)  - it really is an unsigned integer rather than a signed
integer.

>From openbsd manpage:

     ssize_t
     recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from,
             socklen_t *fromlen);

>From linux manpage:
 
int  recvfrom(int s, void *buf, int len,  unsigned int flags,
                       struct sockaddr *from,  int *fromlen);
-- 
Chris Green <[EMAIL PROTECTED]>
Joe Cool always spends the first two weeks at college sailing his frisbee.
                -- Snoopy

Reply via email to