上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 95 下一页
摘要: https://download.csdn.net/download/xiongxu/3222384 阅读全文
posted @ 2018-10-09 16:19 byfei 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 今天在一个服务器上部署一个webserver的时候,提示我bind端口失败,我习惯性的用netstat看了下,没有被占用啊!把问题分享出来后,给力的同事们搜索到了ip_local_port_range这个东西这个东西对应的是/proc/sys/net/ipv4... 阅读全文
posted @ 2018-10-08 20:02 byfei 阅读(91) 评论(0) 推荐(0) 编辑
摘要: //过滤特殊字符会导致数据库存储失败inline bool CheckNameVaild( const char* pStrName ){ int nLen = strlen(pStrName); if(nLen < 1) return false; fo... 阅读全文
posted @ 2018-09-13 17:55 byfei 阅读(56) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #define MAXLINE 80int main(void){ struct sockaddr_in servaddr; int sockfd,i,... 阅读全文
posted @ 2018-09-06 22:08 byfei 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 自动创建表static std::string m_SqlTable = "create table if not exists log_counter_%d(\`Id` int(11) NOT NULL AUTO_INCREMENT,\`ServerId` ... 阅读全文
posted @ 2018-08-30 14:11 byfei 阅读(56) 评论(0) 推荐(0) 编辑
摘要: #include #include int Rand(int from,int to){ int nDec, nMin; if (from > to) { nDec = from - to + 1; nMin = to; } else { n... 阅读全文
posted @ 2018-08-30 14:04 byfei 阅读(60) 评论(0) 推荐(0) 编辑
摘要: bug, 正确 阅读全文
posted @ 2018-08-08 15:53 byfei 阅读(31) 评论(0) 推荐(0) 编辑
摘要: #include int main() { system("TASKKILL /F /IM Gate.exe"); system("pause"); } 阅读全文
posted @ 2018-07-25 11:42 byfei 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 批处理.bat @echo off :en tasklist |find "Gate"||start Gate ping -n 5 127.0.0.1>nul goto en http://python.jobbole.com/84338/ https:/... 阅读全文
posted @ 2018-07-23 14:56 byfei 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 本地计算机 目标计算机 http://www.cnblogs.com/tengs2000/articles/1070760.html 阅读全文
posted @ 2018-07-22 09:47 byfei 阅读(52) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 95 下一页