搜索资源列表
实例51-多线程SPIDER
- 多线程SPIDER:本实例使用多线程技术实现了网络蜘蛛应用程序,可以自动搜索HTML页面并下载指定文件。-multithreading SPIDER : examples of the use of the multithreading technology to achieve a spider network applications, it will automatically search HTML pages and download a specific file.
CShttpServer
- C#编写的简易HTTP服务器,能处理GET请求,并发送当前目录内指定的文件,默认文件为\"index.htm\",找不到文件则发送错误信息 采用多线程编写,能同时连接多个客户端.-C# summary prepared by the HTTP server can handle GET request, , and send the current directory specified in the document, the default document "index.htm&
apihooktest2
- 一、前言 前一段时间发表了一篇文章 “Hook API 工具”,没有附带主程序的源代码,这几天翻出来代码加了些注释,现在补上。不过大家还是最好看看牛的书,书上讲解很详细。 二、对代码的简单说明 总共3个工程,1个主程序,1个HookDll, 1个例子Dll。主程序负责启动进程,并将 HookDll 注入。还有一些额外的功能,比如显示 Log, 例子Dll的信息,导出函数等,HookDll 在 DllMain 启动的时候根据配置钩住指定的 API 函数 三、这
postkill
- system权限下,创建远程线程将dll注入用户进程,以用户身份发送消息。此例对指定程序发送一个WM_QUIT消息。专用来使防火墙类程序正常退出。传递参数使用注册表实现。-system authority, the creation of dll threaded remote users into the process, to send user information. Such cases to send a designated WM_QUIT news. Dedicated to e
GetThreadStartAddress
- 该程序的作用是通过未公开函数在RING3下获得指定线程的入口地址,根据此地址可知道这个线程是由哪个模块创建的。
线程时钟
- 用线程模拟定时器,也可以做多线程,自动管理线程并调用指定类中的函数,方便写多线程序
threadpool
- 线程池功能,控制线程的执行及同步,在同一时刻,线程池中只允许指定数量的线程执行.-Thread pool function, control the implementation of threads and synchronization, at the same time, the thread pool to allow only a specified number of threads implementation.
sseesa
- 这代码是利用HOOK技术把PsCreateSystemThread 函数钩挂实现杀掉指定线程-This code is the use of technology to PsCreateSystemThread HOOK hook function to achieve the specified thread to kill
MulThreadDownload
- Java源码,Android源码,多线程下载 Java源码,android多线程下载器演示,内含APK文件,已经生成了可在Android上运行的APK文件,多线程下载在Android中使用很普遍,是一项值得掌握的Android编程技术。本源码通过一个多线程下载器的完整编写示例,帮助Android移动开发新手了解如何获取已下载文件长度、如何得到原始文件长度,如何开启线程数,缓存各线程下载的长度,构建文件下载器,更新指定线程最后下载的位置,把各条线程已经下载的数据长度放入data中,监听下载
IBXJUOH
- 一个自动备份指定路径下的文件的程序,并可以对备份的文件进行压缩,不错(An automatic backup file of the program under the specified path, and the backup files can be compressed, and good)
eauelbg71
- 系统自动生成用户指定数量的题目选择英文西班牙文对应的西班牙文()
FIQSZC
- 该程序主要实现了单个或批量修改指定文件的信息,()
704449
- 它能够启动你指定的任意多个程序,被启动的程序将像 NT 服务一样运行()
9364376
- 易语言后台截图例程,可指定截图尺寸和范围,小巧实用()
993429
- vc++获得指定点颜色 Vc ++ gets the specified point color()
rebiasilztys
- 该程序主要实现了单个或批量修改指定文件的信息,()
[模块源码] - 使用指定线程执行子程序
- 纯源代码 可以指定线程执行指定函数 无模板 全API操作(Pure source code can specify a thread to execute a specified function)
多线程端口扫描器
- E语言多线程端口扫描工具,可以扫描指定IP的开放端口!(Multithreading port scan)
FileSearcher
- 启动多个线程快速搜索文件并打印出来,搜索格式为 盘符\文件所含字符 即可搜索指定盘符下所含字符的文件(Start multiple threads to search the files quickly and print them out. Search format is C:\string A file to search for the characters under the specified disk)
linux下的多线程高并发tcp服务器
- 基于epoll的多线程TCP服务器 基于epoll,监听指定端口的TCP请求; TCP长连接、短连接分别使用不同的端口; 当接收到客户端的TCP短连接请求时,返回服务器ip地址、MAC地址;当接收到客户端的TCP长连接请求时,服务器接收连接,客户端周期性向服务器发送心跳; 支持多个客户端的并发TCP请求; 使用多线程技术,同时监听、提供服务; 设计服务器端和客户端的通信协议,使用JSON格式。