mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-06-20 23:26:07 -04:00
29 lines
855 B
C++
29 lines
855 B
C++
// Matt Wells, copyright Nov 2001
|
|
|
|
#ifndef GB_LINKSPAM_H
|
|
#define GB_LINKSPAM_H
|
|
|
|
#include "gb-include.h"
|
|
#include "ip.h"
|
|
|
|
class Url;
|
|
|
|
bool setLinkSpam ( int32_t ip ,
|
|
const Url *linker ,
|
|
int32_t siteNumInlinks ,
|
|
class Xml *xml ,
|
|
class Links *links ,
|
|
bool isContentTruncated );
|
|
|
|
bool isLinkSpam ( const Url *linker ,
|
|
int32_t ip ,
|
|
int32_t siteNumInlinks ,
|
|
class Xml *xml ,
|
|
class Links *links ,
|
|
int32_t maxDocLen ,
|
|
const char **note ,
|
|
const Url *linkee ,
|
|
int32_t linkNode );
|
|
|
|
#endif // GB_LINKSPAM_H
|