欢迎来到毕设资料网! | 帮助中心 毕设资料交流与分享平台
毕设资料网
全部分类
  • 毕业设计>
  • 毕业论文>
  • 外文翻译>
  • 课程设计>
  • 实习报告>
  • 相关资料>
  • ImageVerifierCode 换一换
    首页 毕设资料网 > 资源分类 > DOC文档下载
    分享到微信 分享到微博 分享到QQ空间

    计算机专业毕业设计(论文)外文翻译2篇

    • 资源ID:129908       资源大小:87.50KB        全文页数:14页
    • 资源格式: DOC        下载积分:100金币
    快捷下载 游客一键下载
    账号登录下载
    三方登录下载: QQ登录
    下载资源需要100金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。

    计算机专业毕业设计(论文)外文翻译2篇

    1、 毕业设计 (论文 )外文文献翻译 译文一 : Introduction to TCP/IP Introduction 译文二 : Client Server Programming with Winsock 学生姓名 学 号 系 别 信息与电子系 专业 班级 计算机科学与技术 Introduction to TCP/IP Introduction Author Catalyst Development Catalyst Development is a recognized leader in Internet component software whose award-winning p

    2、roducts are used by thousands of corporate, government and independent developers around the world. Introduction With the acceptance of TCP/IP as a standard platform-independent network protocol, and the explosive growth of the Internet, the Windows Sockets API (application program interface) has em

    3、erged as the standard for network programming in the Windows environment. This document will introduce the basic concepts behind Windows Sockets programming and get you started with your first application created with SocketWrench. SocketWrench is part of a package developed by Catalyst called the S

    4、ocketTools Visual Edition. SocketTools includes components and libraries for many of the popular Internet application protocols, such as FTP, POP3, SMTP and HTTP. For more information about the complete SocketTools package, visit the Catalyst website at . It is assumed that the reader is familiar wi

    5、th Visual Basic and has installed the SocketWrench control.If youre already familiar with sockets programming, feel free to skip this section. There are two general approaches that you can take when creating a program that uses Windows Sockets. One is to code directly against the API. The other is t

    6、o use a component which provides a higher-level interface to the library by setting properties and responding to events. This can provide a more natural programming interface, and it allows you to avoid much of the error-prone drudgery commonly associated with sockets programming. By including the c

    7、ontrol in a project, setting some properties and responding to events, you can quickly and easily write an Internet-enabled application. SocketWrench provides a comprehensive interface to the Windows Sockets library and will be used to build a simple client-server application in the next section of

    8、this document. Before we get started with the control, however, well cover the basic terminology and concepts behind sockets programming in general. Transmission Control Protocol (TCP) When two computers wish to exchange information over a network, there are several components that must be in place

    9、before the data can actually be sent and received. Of course, the physical hardware must exist, which is typically either a network interface card (NIC) or a serial communications port for dial-up networking connections. Beyond this physical connection, however, computers also need to use a protocol

    10、 which defines the parameters of the communication between them. In short, a protocol defines the rules of the road that each computer must follow so that all of the systems in the network can exchange data. One of the most popular protocols in use today is TCP/IP, which stands for Transmission Cont

    11、rol Protocol/Internet Protocol. By convention, TCP/IP is used to refer to a suite of protocols, all based on the Internet Protocol (IP). Unlike a single local network, where every system is directly connected to each other, an internet is a collection of networks, combined into a single, virtual net

    12、work. The Internet Protocol provides the means by which any system on any network can communicate with another as easily as if they were on the same physical network. Each system, commonly referred to as a host, is assigned a unique 32-bit number which can be used to identify it over the network. Ty

    13、pically, this address is broken into four 8-bit numbers separated by periods. This is called dot-notation, and looks something like 192.43.19.64. Some parts of the address are used to identify the network that the system is connected to, and the remainder identifies the system itself. Without going

    14、into the minutia of the Internet addressing scheme, just be aware that there are three classes of addresses, referred to as A, B and C. The rule of thumb is that class A addresses are assigned to very large networks, class B addresses are assigned to medium sized networks, and class C addresses are

    15、assigned to smaller networks (networks with less than approximately 250 hosts). When a system sends data over the network using the Internet Protocol, it is sent in discrete units called datagrams, also commonly referred to as packets. A datagram consists of a header followed by application-defined

    16、data. The header contains the addressing information which is used to deliver the datagram to its destination, much like an envelope is used to address and contain postal mail. And like postal mail, there is no guarantee that a datagram will actually arrive at its destination. In fact, datagrams may

    17、 be lost, duplicated or delivered out of order during their travels over the network. Needless to say, this kind of unreliability can cause a lot of problems for software developers. Whats really needed is a reliable, straight-forward way to exchange data without having to worry about lost packets o

    18、r jumbled data. To fill this need, the Transmission Control Protocol (TCP) was developed. Built on top of IP, TCP offers a reliable, full-duplex byte stream which may be read and written to in a fashion similar to reading and writing a file. The advantages to this are obvious: the application progra

    19、mmer doesnt need to write code to handle dropped or out-of-order datagrams, and instead can focus on the application itself. And because the data is presented as a stream of bytes, existing code can be easily adopted and modified to use TCP. TCP is known as a connection-oriented protocol. In other w

    20、ords, before two programs can begin to exchange data they must establish a connection with each other. This is done with a three-way handshake in which both sides exchange packets and establish the initial packet sequence numbers (the sequence number is important because, as mentioned above, datagra

    21、ms can arrive out of order; this number is used to ensure that data is received in the order that it was sent). When establishing a connection, one program must assume the role of the client, and the other the server. The client is responsible for initiating the connection, while the servers responsibility is to wait, listen and respond to incoming connections. Once the connection has been established, both sides may send and receive data until the connection is closed. User Datagram Protocol


    注意事项

    本文(计算机专业毕业设计(论文)外文翻译2篇)为本站会员(泛舟)主动上传,毕设资料网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请联系网站客服QQ:540560583,我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们
    本站所有资料均属于原创者所有,仅提供参考和学习交流之用,请勿用做其他用途,转载必究!如有侵犯您的权利请联系本站,一经查实我们会立即删除相关内容!
    copyright@ 2008-2025 毕设资料网所有
    联系QQ:540560583