网站地图| 免费获取|
毕业论文网
  • 网站首页|
  • 论文范文|
  • 论文降重|
  • 职称论文发表|
  • 合作期刊|
  • 论文下载|
  • 计算机论文|
  • 外文翻译|
  • 免费论文|
  • 论文资料|
  • 论文开题报告
搜索

当前位置:毕业论文网 -> 论文下载 -> 通信工程论文 -> Unix环境网络PtoP基本通信系统的交换机开发
自动化论文范文| 电子机电论文| 测控技术论文| 通信专业论文| 电气工程论文| 通信工程论文| 电子信息工程论文| 免费自动化论文| 免费电子论文| 免费电气论文| 免费通信论文

Unix环境网络PtoP基本通信系统的交换机开发

本文ID:LW16708 字数:15147,页数:52 价格:¥148.00 → 信用说明

以下为论文简介,扫一扫付款马上可获取全文,付款金额见标题右下角。付款后请把付款结果截图及本篇论文的网址或者论文ID发给客服,客服核实后,马上将论文发到您的邮箱或者在线传送给您。客服QQ:17304545 点击这里给我发消息   微信:17304545 扫一扫 扫一扫
本站会员可自行下载:下载地址 Unix环境网络PtoP基本通信系统的交换机开发 (收费:14800 积分)  如何获取积分?
Unix环境网络PtoP基本通信系统的交换机开发

文档编号:TX350  文档字数:15147,页数:52

摘要
 
 网络编程中最常用的是客户机/服务器模型,但是点对点通信模式编程更简单,适合传输数据流少的场合,如控制测量等方面。
 基于Socket的PtoP通信是一种灵活的、易于实现的、低成本的方法。它可以运行在各种使用TCP/IP协议作为通讯协议的网络上。而在Socket API的帮助下,开发基于Socket的PtoP通信软件也是易于实现的。
 本课题学习和开发在Unix环境下使用TCP/IP协议开发一个点对点(PtoP)基本框架系统的交换服务器(传输管理服务器)程序。该基本框架系统由一传输管理服务器、一下载站点(客户端)、若干传输服务器(服务器端)组成。客户端向传输管理服务器发送下载请求,传输管理服务器查询数据库并返回相关传输服务器的地址信息。客户端根据传输管理服务器返回的地址与传输服务器连接进行数据下载。传输管理服务器完成信息的收集,查询和状态控制的功能,其它的处理功能依赖客户端与传输服务器。
 本课题重点研究在Unix环境下如何利用socket套接字完成程序间的通信。至于中间的信息收集,状态查询控制过程等以具有类似功能的程序代替实现。

关键词: 点对点,UNIX,SOCKET,TCP/IP

Abstract
 
 Network programming is the most commonly used in client / server model, but the point-to-point communication mode programming simpler, less suitable for transmission of data flow of the occasion, such as control measure, and so on.         Based on the PtoP Socket Communications is a flexible, easy-to-implement, low-cost method. It can run on all kinds of use of TCP / IP protocol as the communication protocol on the network. In Socket API's help, based on the development of the PtoP         The study and development issues in the Unix environment to use TCP / IP protocol to develop a peer-to-peer (PtoP) basic framework for the exchange server (server management transfer) process. The basic framework of a transmission system from the management server, a download site (client), a number of transmission server (server). The client to download the request sent to the server, the server query the database and return to the address of the server-related transmission of information.  
 According to client server to return to the address of the server connected with the transmission of data downloaded. Server information collection, search and control the functions of state, other processing functions rely on the client and server transfer.         The key research topics in the Unix environment how to use socket socket complete the process of communication. As for the middle of the collection of information, such as state control process for a similar function to replace the procedures to achieve.
 
Key words:  peer-to-peer,UNIX,SOCKET,TCP/IP
目录

摘要 I
Abstract II
第1章 引言 1
1.1 研究的背景 1
1.2 研究的目的及现状分析 1
第2章 UNIX系统基础 4
2.1 UNIX系统的发展 4
2.2 UNIX系统的体系结构 5
2.3 UNIX系统的地址空间 5
2.4 UNIX下软件开发环境 6
2.4.1 vi编辑器 6
2.4.2 gcc编译器 7
2.4.3 gdb调试器 8
第3章 网络编程基础 9
3.1 TCP/IP体系 9
3.2 IP协议 9
3.2.1 IP包的结构 9
3.3 TCP协议 10
3.3.1建立TCP连接 10
3.3.2关闭TCP连接 10
3.3.3 TCP包结构 11
3.4 UDP协议 11
3.5 ICMP协议 12
3.6 端口分配 13
3.6.1 端口介绍 13
3.6.2 端口分类 13
3.7 套接字概述 13
3.8 套接字类型 14
3.9 Socket通信 15
3.9.1 Socket接口 15
3.9.2 Socket 编程大致流程 15
第4章 基于TCP/IP的交换服务器程序设计和实现 17
4.1 系统的需求分析 17
4.1.1 系统基本框架图 17
4.1.2 功能需求 17
4.1.3 系统设计思想 18
4.2 系统设计方案 18
4.2.1 流程分解图 19
4.2.2 整体实现流程图 21
4.2.3 实际应用中的数据传输过程 22
第5章 系统调试与测试 27
5.1 系统调试 27
5.1.1 调试环境 27
5.1.2 调试步骤 27
5.1.3调试结果说明 29
5.2 系统测试 29
第6章 总结 31
致谢 32
参考文献 33
附录1 客户端源程序 34
附录2 传输管理服务器源程序 40
附录3 传输服务器源程序 44

Unix环境网络PtoP基本通信系统的交换机开发由毕业论文网(www.huoyuandh.com)会员上传。
原创论文资料流程 相关论文
上一篇:局域网规划与设计 下一篇:基于ZLG500A读卡模块的智能卡应用
推荐论文 本专业最新论文
Tags:Unix 环境 网络 PtoP 基本 通信 系统 交换机 开发 2011-04-01 10:08:53【返回顶部】
发表论文

联系方式 | 论文说明 | 网站地图 | 免费获取 | 钻石会员 | 硕士论文资料


毕业论文网提供论文范文,论文代发,原创论文资料

本站部分文章来自网友投稿上传,如发现侵犯了您的版权,请联系指出,本站及时确认并删除  E-mail: 17304545@qq.com

Copyright@ 2009-2020 毕业论文网 版权所有