2017年12月7日

摘要: struct HeatPdu{ UInt16 header; UInt8 Mac[6]; UInt16 RequestId; UInt8 Code; UInt8 SubCode; UInt16 DataLength; UInt8 data[0];}; 任何网络包的解析 --》 结构体 阅读全文
posted @ 2017-12-07 10:58 lydstory 阅读(138) 评论(0) 推荐(0) 编辑

2017年12月6日

摘要: UInt64 hl64ton(UInt64 host){ UInt64 ret = 0; UInt64 high,low; low = host & 0xFFFFFFFF; high = (host >> 32) & 0xFFFFFFFF; low = htonl(low); high = hton 阅读全文
posted @ 2017-12-06 23:40 lydstory 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 今天发现一个inline 引起undefined reference to 问题, 刚开始 以为是链接库 找不到的问题,以为是makfile 或者的 文件没有编译进去 调整2,3小时 不得解释 最终解决方法: 添加一个类的另一个方法,GetText() 调用居然成功,还是类成员函数的问题 最后去掉i 阅读全文
posted @ 2017-12-06 17:24 lydstory 阅读(128) 评论(0) 推荐(0) 编辑
摘要: main.cc:57: undefined reference to `evpp::udp::UdpDecoder::GetHeader()'collect2: error: ld returned 1 exit statusmake[2]: *** [bin/example_udpecho] Er 阅读全文
posted @ 2017-12-06 17:19 lydstory 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 位(bit)字节(byte)一字节是8位所以2Byte是16位二进制 阅读全文
posted @ 2017-12-06 00:20 lydstory 阅读(307) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/ea24bc399fccb9da62b331bd.html 阅读全文
posted @ 2017-12-06 00:08 lydstory 阅读(192) 评论(0) 推荐(0) 编辑

2017年12月5日

摘要: heart beat 心跳 阅读全文
posted @ 2017-12-05 22:44 lydstory 阅读(131) 评论(0) 推荐(0) 编辑
摘要: CD /d C:\Program Files (x86)\WinSCPWinSCP.exe /console /command "option batch continue" "option confirm off" "open sftp://lyd:1234568888@192.168.1.109 阅读全文
posted @ 2017-12-05 18:03 lydstory 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 我们经常使用WinSCP工具通过sftp协议上传获取文件,本文描述通过bat批量处理文件。 首先,我们打开dos命令窗口使用 cd \d :D\WinSCP 打开WinSCP安装目录 上传文件: winscp.exe /console /command "option batch continue" 阅读全文
posted @ 2017-12-05 17:32 lydstory 阅读(1146) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-12-05 16:51 lydstory 阅读(126) 评论(0) 推荐(0) 编辑

导航