1 Star 0 Fork 0

ihsan/Cspider

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
httpSpider.h 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
sxysxy 提交于 2016-09-08 13:23 . 去掉调试-g选项
#ifndef HTTPSPIDER_H
#define HTTPSPIDER_H
#include "basedef.h"
#include "trie.h"
#define HOST_MAXLEN 40
typedef void (*analyzerType) (char *b, int sz);
typedef struct spiderType
{
char host[HOST_MAXLEN]; //事实上准确的说是用户给的host....
int port;
long ip; //ip
analyzerType analyzer;
trie slot;
}spider;
#define PLUG_MAXLEN 80
typedef struct spiderPlugType
{
char plug[PLUG_MAXLEN];
char func[PLUG_MAXLEN];
bool attached;
long nativePointer;
}spiderPlug;
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/KurbanEhsan/cspider.git
git@gitee.com:KurbanEhsan/cspider.git
KurbanEhsan
cspider
Cspider
master

搜索帮助