« squid 2.6 自定义 logformat 特定 cookie 的获取 | Main | 为 parker 加上 site 搜索/站点搜索支持 »
December 17, 2006
熬夜到凌晨4点 给 parker 加了个去重判断
版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明。 https://windtear.net/archives/2006/12/17/001166.html http://windtear.net/archives/2006/12/17/001166.html 熬夜到凌晨4点 给 parker 加了个去重判断 文件、路径、站点三块全不相同时才是新的 fileflag = strcmp(ptr3, oldfile); pathflag = strcmp(path, oldpath); hostflag = strcmp(ptr1, oldhost); if(fileflag || pathflag || hostflag) { if(fileflag) strcpy(oldfile, ptr3); if(pathflag) strcpy(oldpath, path); if(hostflag) strcpy(oldhost, ptr1); ...... } else { count++; } 发信人: windtear (追求完美), 信区: Test 标 题: sweat 发信站: 水木社区 (Sun Dec 17 03:43:17 2006), 站内 写了好多程序 解决了n多问题 还有几个细节待处理 nite |
Posted by windtear at December 17, 2006 3:43 AM