open-source-search-engine/Domains.h
2013-08-02 13:12:24 -07:00

22 lines
614 B
C

// Matt Wells, copyright Nov 2001
#ifndef _DOMAINS_H_
#define _DOMAINS_H_
// . get the domain name (name + tld) from a hostname
// . returns NULL if not in the accepted list
// . "host" must be NULL terminated and in LOWER CASE
// . returns ptr into host that marks the domain name
char *getDomain ( char *host , long hostLen , char *tld , long *dlen );
// when host is like 1.2.3.4 use this one
char *getDomainOfIp ( char *host , long hostLen , long *dlen );
// used by getDomain() above
char *getTLD ( char *host , long hostLen ) ;
// used by getTLD() above
bool isTLD ( char *tld , long tldLen ) ;
#endif