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

5<b>2</b>8

  • 本书适应了Windows、Internet及计算机网络普及的潮流

    本书适应了Windows、Internet及计算机网络普及的潮流,介绍了一套在Windows下网络编程的规范-Windows Sockets。这套规范是Windows下得到广泛应用的、开放的、支持多种协议的网络编程接口。从1991年的1.0版到1995年的2.0.8版,经过不断完善并在Intel、Microsoft、Sun、SGI、Informix、Novell等公司的全力支持下,已成为Windows网络编程的事实上的标准。为使读者能够充分理解和应用这套规范,本书不但对Windows Sockets 1.1及2.0规范作了较为详尽的介绍,还结合了作者的实际工作,给出了具有实际应用价值的程序实例。书中的内容包括:Windows Sockets规范1.1版及2.0.8版介绍;Windows Sockets网络编程指导和具体应用实例;Windows Sockets规范1.1版及2.0.8版库函数参考等。 本书体系完整,文字流畅,可供从事网络应用开发的工程技术人员和大专院校师生参考。

    标签: Internet Windows 计算机网络

    上传时间: 2013-12-08

    上传用户:coeus

  • 本备忘录的状态 本文档讲述了一种Internet社区的Internet标准跟踪协议

    本备忘录的状态 本文档讲述了一种Internet社区的Internet标准跟踪协议,它需要进一步进行讨论和建议以得到改进。请参考最新版的“Internet正式协议标准”(STD1)来获得本协议的标准化程度和状态。本备忘录的发布不受任何限制。 摘要 本文档描述了对于IPv6的路径MTU探索。它很大程度上是从RFC1191(描述了对于IPv4的路径MTU探索)发展而来的。 目 录 摘 要 1 1 引言 2 2 术语 2 3 协议概述 3 4 协议需求 4 5 执行问题 5 5.1 分层 5 5.2 存储PMTU信息 5 5.3 清除陈旧PMTU信息 7 5.4 TCP层动作 7

    标签: Internet 状态 文档 协议

    上传时间: 2014-01-01

    上传用户:李梦晗

  • 计算器

    计算器,+、-、*、/、开平方根、2、8、10、16进制之间转换

    标签: 计算器

    上传时间: 2013-12-21

    上传用户:agent

  • 舵机控制程序

    舵机控制程序,舵机的控制信号为周期是20ms的PWM信号,其中高电平持续时间0.5到2.5ms。

    标签: 舵机控制 程序

    上传时间: 2015-11-17

    上传用户:小眼睛LSL

  • 参加运动会的n个学校编号为1~n。比赛分成m个男子项目和w个女子项目

    参加运动会的n个学校编号为1~n。比赛分成m个男子项目和w个女子项目,项目编号分别为1~m和m+1~m+w。由于各项参加人数差别较大,有些项目取前五名,得分顺序为7,5,3,2,1 还有些项目只取前三名,得分顺序为5,..

    标签: 项目

    上传时间: 2015-12-20

    上传用户:ljt101007

  • 本书适应了 Windows 、 Internet 及计算机网络普及的潮流

    本书适应了 Windows 、 Internet 及计算机网络普及的潮流,介绍了一套在 Windows下网络编程的规范-Windows Sockets。这套规范是Windows下得到广泛 应用的、开放的、支持多种协议的网络编程接口。从 1991 年的 1.0 版到 1995 年的 2.0.8版,经过不断完善并在Intel、Microsoft 、Sun、SGI、Informix、Novell等 公司的全力支持下,已成为Windows网络编程的事实上的标准。为使读者能够充分 理解和应用这套规范,本书不但对Windows Sockets 1.1及2.0规范作了较为详尽的 介绍,还结合了作者的实际工作,给出了具有实际应用价值的程序实例。书中的内 容包括:Windows Sockets规范1.1版及2.0.8版介绍;Windows Sockets网络编程指 导和具体应用实例;Windows Sockets规范1.1版及2.0.8版库函数参考等。 本书体系完整,文字流畅,可供从事网络应用开发的工程技术人员和大专院校 师生参考。

    标签: Internet Windows 计算机网络

    上传时间: 2014-02-22

    上传用户:SimonQQ

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    标签: represented integers group items

    上传时间: 2016-01-17

    上传用户:jeffery

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    标签: converts Toolbox complex logical

    上传时间: 2016-02-12

    上传用户:a673761058

  • MSN客服自动化机器人

    MSN客服自动化机器人,目前版本为0.5.0.2.4。百度=梦界家园

    标签: MSN 自动化 机器人

    上传时间: 2013-12-04

    上传用户:thesk123

  • 进制转换程序

    进制转换程序,可进行2,8,10,16进制之间的任意转换

    标签: 进制转换 程序

    上传时间: 2014-12-21

    上传用户:franktu