发布时间:2016-11-20 10:39:47
1, 查看无线网卡的芯片型号如果是usb网卡, 用lsusb(属于usbutils的命令), 查看无线网卡的型号:#[root@localhost wireless]# lsusbBus 001 Device 002: ID 148f:7601 Ralink Technology, Corp. MT7601U Wireless Adapter如果是内置网卡,或pci网卡:#[root@localhost wireless]# lspci04:00.0 Network con.........【阅读全文】
发布时间:2016-11-16 16:55:29
1, vsftpd配置文件 #cat /usr/local/etc/vsftpd.conf# Example config file /etc/vsftpd.conf## The default compiled in settings are fairly paranoid. This sample file# loosens things up a bit, to make the ftp daemon more usable.# Please see vsftpd.conf.5 for all compiled in defaults.## REA.........【阅读全文】
发布时间:2016-11-03 10:38:47
iocp在发送或接送数据的时候可能会出现乱顺问题, 主要处理办法使用list来保证顺序:发送:1, 发送的时候, 先将数据组成成io entry, 再调用WSASend(...)发送数据, 如果数据发送不成功(pending), 则将该io entry加入io_send_queue(fifo队列)2, 每次异步GetQueuedCompletionStatus中得到.........【阅读全文】
发布时间:2016-11-01 16:15:18
转载自: http://hzdiy.iteye.com/blog/7781942.IOCP发送大数量的问题 有A,B两块数据,如AB两块数据,如果A数据比较大,异步只发送了一部分就返回了,B数据已经提交,?这时候再发A剩下的部分就乱顺序了 ,该如何处理。 所有重叠操作可确保按照应用程序投递的顺序执行. 然而, 不能确保从完.........【阅读全文】