▍1. lumisoft 实例开发 抢号专用(电话外呼)
lumisoft 实例开发 抢号专用
这是一个界面和操作简单的天气查询工具。可以自动根据IP地址获取天气信息;可以自动定时提醒;可以显示日历信息;可以自定义皮肤等。
无连接的VC++网络通信 源代码,输入本机端口号、目标端口号、目标机IP地址,可以发送消息,并不建立连接。(Connectionless network communications VC++ source code, enter the local port number, destination port number, destination IP address, you can send a message, does not establish a connection.)
从libnids得到TCP重组的数据,当libnids的状态为NIDS_JUST_EST时,表示TCP建立连接,在此时给TCP流增加一个flow_id用来标识此连接;当libnids的状态为NIDS_DATA时,表示接受数据,当有新的数据到达时,根据flow_id把数据push到相应的流表中,为之后的数据分析做准备。因此,可以在此框架上增加符合http协议的应用解析(Data TCP libnids restructuring, when libnids status to NIDS_JUST_EST, said the TCP connection is established, at the same time adds a flow_id to TCP flow is used to identify this connection When libnids status to NIDS_DATA, accepted data, when new data arrives, according to flow_id to push data to the corresponding flow table, prepare the way for after data analysis. Can be increased on this framework, therefore, in accordance with the application of the HTTP protocol parsing)
acl_cpp 是基于 acl 库的 C++ 库,包括 MIIME 解析、Handlersocket 客户端库、数据库连接池(支持mysql/sqlite)、WEB 编程、数据库编程、阻塞/非阻塞数据流等内容。(acl_cpp is based acl library of C++ libraries, main elements: common features acl C library, MIIME parsing, Memcached client library, Handlersocket client library, connection pool (support mysql/sqlite), WEB programming, programming, blocking/non-blocking streams and other content.)
部分win7/win8用户 运行时报错 可能是 权限问题,所以运行项目的时候 要右键>>以管理员身份运行 部分用户 运行该项目的时候 可能提示:协定需要双工 但是绑定 NetTcpBinding 不支持 这是只需要将host项目app.config中协议部分 改为wsDualHttpBinding 即可,如下代码: 另外使用wcf时,最好不要使用 using 因为使用using会屏蔽掉很多错误,误导用户,参考链接:http://www.codeproject.com/Tips/197531/Do-not-use-using-for-WCF-Clients 相关代码改为:using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;using System.ServiceModel;namespace WcfUploadServiceHost{ static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { try { var host = new ServiceHost(typeof (WcfUploadServiceLib.UpLoadService)); host.Open(); Console.WriteLine("Server is opened..."); Console.Read(); //using (var host = new ServiceHost(typeof(WcfUploadServiceLib.UpLoadService))) //{ // host.Open(); // Console.WriteLine("Server is opened..."); // Console.Read(); //} } catch (Exception ex) { Console.WriteLine(ex.ToString()); Console.Read(); } } }}
通过继承 IClientMessageInspector IDispatchMessageInspector 实现 请求消息头的验证
WINPCAP 抓包工具,可以用来抓包等功能,十分简单的代码,可以直接使用(WINPCAP tools)
wcf 通过header 验证用户名密码例子源码(无须证书)
透過 Socket 擷取影像,並進行 OpenCV MOG2 計算(Capture images through Socket, and OpenCV MOG2 computing)