登录
首页 » Windows Socket编程 » windows系统下的一个防火墙源代码,内有帮助文件说明

windows系统下的一个防火墙源代码,内有帮助文件说明

于 2022-10-02 发布 文件大小:1.21 MB
0 148
下载积分: 2 下载次数: 1

代码说明:

windows系统下的一个防火墙源代码,内有帮助文件说明-windows of a system firewall source code, there are help files note

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • G.723语音码介绍及优化 语音码分成波形码、参数码和混合码.波形码就是语音信号形成的波形进行处理和加工,参数码是以语音信号产生的数字模型为基础,...
    G.723语音编码介绍及优化 语音编码分成波形编码、参数编码和混合编码.波形编码就是语音信号形成的波形进行处理和加工,参数编码是以语音信号产生的数字模型为基础,求出其模型参数,然后按照这些参数还原数字模型,合成语音。混合编码是综合了波形编码和参数编码的长处,在4-16kbps的速率上进行高质量的语音合成。例如多脉冲激励线性预测编码(MPLPC),码本激励线性预测编码(CELP)都是混合编码。-G.723 speech coding and optimization of voice introduced into coding waveform coding, coding parameters and mixed coding. Waveform voice signal is encoded form of waveform handling and processing, encoding parameters based on the voice signal to digital model based on its model parameters calculated, and then it these parameters reduction digital model, synthetic voice. Mixed coding is integrated waveform coding and coding parameters of the merits of the 4-without compromising the audio on the rate of high-quality speech synthesis. For example, multi-pulse Excited Linear Predictive Coding (MODIFIED), the Code Excited Linear Predictive Coding (CELP) are mixed coding.
    2022-08-18 14:54:38下载
    积分:1
  • prepared using the API function procedures, the document can be achieved free!
    利用API函数编写的程序,可以实现文件的自由传送!-prepared using the API function procedures, the document can be achieved free!
    2023-06-02 23:25:03下载
    积分:1
  • 基于TCP的协议分析,分析引擎为WINPCAP,这个主用用来分析FTP
    基于TCP的协议分析,分析引擎为WINPCAP,这个主用用来分析FTP-based on the TCP protocol analysis, analysis of WINPCAP engine, the main use to analyze FTP
    2022-02-25 10:00:34下载
    积分:1
  • 使用delphi写的实现局域网内通讯的序,在delphi6下译运行通过。...
    使用delphi编写的实现局域网内通讯的程序,在delphi6下编译运行通过。-prepared by the use of LAN communications within procedures, the compiler running under Delphi6 through.
    2022-07-08 00:48:08下载
    积分:1
  • ARQ协议实验的实现,模拟发送方和接收方,将文件1中的数据发送到文件3,其中文件2保存中间内容...
    ARQ协议实验的实现,模拟发送方和接收方,将文件1中的数据发送到文件3,其中文件2保存中间内容-ARQ protocol implementation experiment to simulate the sender and receiver, a data file sent to the paper 3, in which the middle of the contents of the file to save two
    2022-03-16 06:15:34下载
    积分:1
  • 线的创建、销毁和调度本身就是一个成本,如果线的线
    线程的创建、销毁和调度本身是有代价的,如果一个线程的任务相对简单,那这些时间和空间开销就不容忽视了,此时用线程池就是更好的选择,即创建一些线程然后反复利用它们,而不是在完成单个任务后就结束。-thread creation, destruction and scheduling itself is a cost, if the threads of a relatively simple task. That time and space costs can not be ignored, this time using thread pool is the better choice, namely, the creation of some thread then reuse them, rather than individual tasks completed after the end.
    2022-02-05 08:49:42下载
    积分:1
  • Infix到Postfix转化的完全实现,Infix到Postfix转化的完全实现
    Infix到Postfix转化的完全实现,Infix到Postfix转化的完全实现-Infix to Postfix conversion fully achieved
    2022-03-23 15:03:13下载
    积分:1
  • 用于生成下载链接的关键类 可用于会员下载内容控制
    用于生成下载链接的关键类 可用于会员下载内容控制-a class used to create a link to download
    2022-01-31 00:56:02下载
    积分:1
  •  各个线任务分配是这样实现的。在开始下载时,文件平均分成若干块进行下载。如第一个线一开始的任务是从文件的0位置开始下载一直到72908位置处。线1每次下载...
     各个线程任务分配是这样实现的。在开始下载时,文件平均分成若干块进行下载。如第一个线程一开始的任务是从文件的0位置开始下载一直到72908位置处。线程1每次下载一块数据后就要调整任务,如第一次下载了20800字节的数据,那么线程1的任务将改为:20800-72908。如此下去,直到任务为72908-72908时表示线程1完成了当前的下载任务。此时,线程1就分析各个线程的任务,找出任务最为繁忙的一个线程:如线程3:14816-218724。那么线程1就自动去调整任务,拿50%的任务来再次下载。周而复始直到各个线程都完成任务。不过这里有一点需要注意:为了避免重复下载部分数据,在调整任务的时候,起始的文件便移量必须加上接受缓冲器的字节数,因为如前面所举的列子来看。线程1和线程3在平衡负载的时候,线程正在下载数据,如果所剩的数据比接受缓冲器的大小还小,线程1和线程3的部分下载数据将会重复。   在调整任务和分析任务的时候,会发现一个问题。就是读取文件数据太过频繁。于是我用了一个数据结构。在下载文件的过程中始终打开配置文件,这样速度提高了很多。在文件下载完毕后关闭文件。-various threads assignment is achieved. At the beginning of the download, the paper divided into a number of pieces of the download. As a thread of a task is to start from the position paper of 0 to start the download has 72,908 locations Department. Thread a download each one will have to adjust the data tasks, such as the first downloaded 20,800 gigabytes of data, then threaded a task will be re :20800- 72908. This situation continues until the mandate of 72908-72908 said threaded a completion of the cu
    2022-03-20 03:50:55下载
    积分:1
  • 用VC socket 实现聊天室的客户端
    用VC socket 实现聊天室的客户端-VC socket used to achieve Chat client
    2023-04-02 07:05:03下载
    积分:1
  • 696518资源总数
  • 106010会员总数
  • 4今日下载