虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

数据<b>传输接口</b>

  • 目前企业面临的计算环境和过去有很大的变化

    目前企业面临的计算环境和过去有很大的变化,许多数据资源能够依靠网络来远程存取,而且越来越多的通讯依赖于公共网络公共网络(如 Internet),而这些环境并不保证实体间的安全通信,数据在传输过程可能被其它人读取或篡改。

    标签: 计算 环境 变化

    上传时间: 2014-01-19

    上传用户:skfreeman

  • Cctt, "Covert Channel Tunneling Tool" - 顾名思义

    Cctt, "Covert Channel Tunneling Tool" - 顾名思义,这是一种隐藏通道工具。他提供几种可行方法来实现允许在已被网络访问控制系统授权的数据流上创建并建立任意数据流传输信道。

    标签: Tunneling Channel Covert Cctt

    上传时间: 2014-01-13

    上传用户:gxf2016

  • 以GMS97C2051单片机为核心

    以GMS97C2051单片机为核心,采用TLC2543 12位串行A/D转换器,设计了一个串行数据采集/传输模块,给出了主要源程序。

    标签: C2051 2051 GMS 97C

    上传时间: 2015-03-17

    上传用户:teddysha

  • C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.141

    C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264

    标签: my_Include include define 3.141

    上传时间: 2014-01-17

    上传用户:epson850

  • XML是一种新的技术

    XML是一种新的技术,XML的出现使得数据的传输变得很灵活,这本书对初学者很有用的!

    标签: XML

    上传时间: 2014-01-13

    上传用户:ljmwh2000

  • UDP对QQ来说太重要了。 UDP和TCP是同一个层上的协议

    UDP对QQ来说太重要了。 UDP和TCP是同一个层上的协议,都是通过IP层进行数据。。。 算啦,不扯这些了。 UDP针对的是不需要保证数据一定传输到的一种协议。因为IP 本身是会被随意丢弃的,所以TCP为确保数据可靠,会消耗大量的 资源,而且Socket架上去以后会出于保持链接的一种结构。 QQ本身不保持链接,数据是否可靠自己去验证,而且QQ里的数据 都是小包,尤其适应UDP的结构。最后对于multicast来说,UDP 是唯一可行的降低网络带宽负担的协议

    标签: UDP TCP 协议

    上传时间: 2013-12-19

    上传用户:caozhizhi

  • 以GMS97C2051单片机为核心

    以GMS97C2051单片机为核心,采用TLC2543 12位串行A/D转换器,设计了一个串行数据采集/传输模块,给出了硬件原理图和主要源程序。

    标签: C2051 2051 GMS 97C

    上传时间: 2013-12-09

    上传用户:qq521

  • 在VC++中利用ActiveX控件开发串行通信程序 用VC控件MSComm编写串口通信程序的源代码

    在VC++中利用ActiveX控件开发串行通信程序 用VC控件MSComm编写串口通信程序的源代码,并写出详细的编程过程 一个单片机串行数据采集/传输模块的设计

    标签: ActiveX MSComm 控件 程序

    上传时间: 2015-04-21

    上传用户:Miyuki

  • 是一个本科生的毕业设计和论文

    是一个本科生的毕业设计和论文,包含双机的通信,以及数据的传输。

    标签: 毕业设计 论文

    上传时间: 2013-12-17

    上传用户:baiom

  • 数字运算

    数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    标签: 数字 运算

    上传时间: 2015-05-21

    上传用户:daguda