<small id="8eoco"></small>
    • <strike id="8eoco"><menu id="8eoco"></menu></strike><strike id="8eoco"><menu id="8eoco"></menu></strike>
    • 論文格式
      電氣工程 會計論文 金融論文 國際貿(mào)易 財務(wù)管理 人力資源 輕化工程 德語論文 工程管理 文化產(chǎn)業(yè)管理 信息計算科學(xué) 電氣自動化 歷史論文
      機械設(shè)計 電子通信 英語論文 物流論文 電子商務(wù) 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學(xué)工程 漢語言文學(xué) 免費獲取
      制藥工程 生物工程 包裝工程 模具設(shè)計 測控專業(yè) 工業(yè)工程 教育管理 行政管理 應(yīng)用物理 電子信息工程 服裝設(shè)計工程 教育技術(shù)學(xué) 論文降重
      通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學(xué) 藝術(shù)設(shè)計 新聞專業(yè) 信息管理 給水排水工程 化學(xué)工程工藝 推廣賺積分 付款方式
      • 首頁 |
      • 畢業(yè)論文 |
      • 論文格式 |
      • 個人簡歷 |
      • 工作總結(jié) |
      • 入黨申請書 |
      • 求職信 |
      • 入團申請書 |
      • 工作計劃 |
      • 免費論文 |
      • 合作期刊 |
      • 論文同學(xué)網(wǎng) |
      搜索 高級搜索

      當前位置:論文格式網(wǎng) -> 畢業(yè)論文 -> 計算機論文
      畢業(yè)論文標題:

      基于TCPIP協(xié)議進行若干程序模塊開發(fā)

       本文ID:LWGSW17668 價格:收費積分/100
      掃一掃 掃一掃
      本站會員可自行下載:下載地址 基于TCPIP協(xié)議進行若干程序模塊開發(fā) (收費:1000 積分)  

      論文字數(shù):17520,頁數(shù):59

       摘要
       本課題介紹在Unix環(huán)境下基于TCP/IP協(xié)議進行若干程序模塊開發(fā),構(gòu)造點對點模型。
       本課題由一個客戶端,一個服務(wù)器,一個傳輸服務(wù)器構(gòu)成。客戶端向服務(wù)器發(fā)送下載請求,服務(wù)器查詢數(shù)據(jù)庫并返回相關(guān)傳輸服務(wù)器的地址信息。客戶端根據(jù)服務(wù)器返回的地址與傳輸服務(wù)器連接進行數(shù)據(jù)下載。服務(wù)器完成信息的收集,查詢和狀態(tài)控制的功能,其它的處理功能依賴客戶端與傳輸服務(wù)器。這里服務(wù)器起的是一個橋梁作用,并不是信息的主要載體。本課題主要的用途是資料的收集傳播。
       在一個成熟的網(wǎng)絡(luò)中有成千上萬個客戶端和傳輸服務(wù)器,本課題重點研究在Unix環(huán)境下如何利用socket(套接字)完成程序間的通信。至于中間的信息收集、狀態(tài)查詢控制過程等以具有類似功能的程序代替實現(xiàn)。
       
      關(guān)鍵詞: 計算機通信,Unix,Socket, 協(xié)議
        
        
       Abstract
       Under Unix circumstance, this subject inroduce the exploitation of TCP/IP developing several procedure modules, Construction peer-to-peer model.
       The design is constituted by a client ,a server and a transfer server. Client send download request to the server.The server inquiries the database then return the address information of related transfer server . Client server connects to the transfer server based on the return address information for data downloadding . Server control client connectting  to transfer server then to sent data and piece them together and so on. The server here is the role of a bridge.It is not the main carrier of the data . Server complete collectting information, inquiring and state control function. Other treatment relies mostly on the client and transfer server themselves. It’s fully embodies the subject that the mainstay of the network is the client not server. The main issue is the use of the information collection and dissemination in the subject.
       There are thousands of clients and transfer servers at least in a mature network.This paper only focus on how to use socket to communicate between the programs in Unix environment. As for the middle of information gathering, state inquiries and control process replaced by some simple procedures to achieve similar functions..
       
      Keyword: Computer communications, Unix, Socket, Protocol

      目錄

       摘要 I
       Abstract II
       第1章 緒論 1
       第2章 unix系統(tǒng)基礎(chǔ) 3
       2.1 unix系統(tǒng)概述 3
       2.1.1 unix系統(tǒng)的歷史 3
       2.1.2 unix系統(tǒng)的特點 5
       2.1.3 unix系統(tǒng)的體系結(jié)構(gòu) 7
       2.1.4 unix系統(tǒng)的地址空間 7
       2.2 unix常用的網(wǎng)絡(luò)命令 8
       2.3 unix下軟件開發(fā)環(huán)境 11
       2.3.1 vi編輯簡介 11
       2.3.2 gcc編譯器簡介 14
       第3章 TCP/IP簡介 16
       3.1 TCP/IP體系 16
       3.2 TCP協(xié)議 16
       3.2.1建立TCP連接 16
       3.2.2 TCP連接關(guān)閉過程如下 17
       3.2.3 TCP包結(jié)構(gòu) 17
       3.3 UDP協(xié)議 17
       3.5  ICMP協(xié)議 18
       3.6 端口分配 18
       3.6.1端口介紹 18
       3.6.2 端口分類 19
       第4章 套接字基礎(chǔ) 20
       4.1.概述 20
       4.2 套接字類型 20
       4.3套接字地址結(jié)構(gòu) 21
       4.3.1 sockaddr 地址結(jié)構(gòu) 21
       4.3.2 INET協(xié)議簇地址結(jié)構(gòu)Sockaddr_in 21
       4.3.3 in_addr地址結(jié)構(gòu) 22
       第5章 TCP套接字 23
       5.1 TCP套接字的實現(xiàn)過程 23
       5.1.1 服務(wù)器端步驟 23
       5.1.2 客戶端步驟 23
       5.1.3 圖示 24
       5.2 SOCKET函數(shù)介紹 24
       第6章 基于TCP/IP的socket網(wǎng)絡(luò)通信程序?qū)崿F(xiàn) 27
       6.1基本框架 27
       6.2程序流程 27
       6.2.1客戶端 27
       6.2.2服務(wù)器端 28
       6.2.3 傳輸服務(wù)器 29
       6.2.4各進程間通信圖示 29
       6.3 客戶端啟動 30
       6.4服務(wù)器的表維護 31
       6.5數(shù)據(jù)傳輸過程 33
       6.6數(shù)據(jù)拼接 34
       6.7 調(diào)試 35
       6.7.1 調(diào)試環(huán)境構(gòu)建 35
       6.7.2 調(diào)試正確時結(jié)果 36
       第7章 結(jié)論 37
       致謝 38
       參考文獻 39
       附錄 程序源代碼 40
       附錄1  客戶端程序代碼 40
       附錄2 服務(wù)器端程序代碼 46
       附錄3 傳輸服務(wù)器端代碼 50


      相關(guān)論文
      本論文在計算機論文欄目,由論文格式網(wǎng)整理,轉(zhuǎn)載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
      上一篇:圖象處理技術(shù) 下一篇:醫(yī)院管理信息系統(tǒng)
      Tags:基于 TCPIP 協(xié)議 進行 若干 程序 模塊 開發(fā) 【收藏】 【返回頂部】
      最新文章
      熱門文章
      計算機論文
      推薦文章

      本站部分文章來自網(wǎng)絡(luò),如發(fā)現(xiàn)侵犯了您的權(quán)益,請聯(lián)系指出,本站及時確認刪除 E-mail:349991040@qq.com

      論文格式網(wǎng)(www.donglienglish.cn--論文格式網(wǎng)拼音首字母組合)提供計算機論文畢業(yè)論文格式,論文格式范文,畢業(yè)論文范文

      Copyright@ 2010-2018 LWGSW.com 論文格式網(wǎng) 版權(quán)所有 蜀ICP備09018832號

      感谢您访问我们的网站,您可能还对以下资源感兴趣:

      论文格式网:毕业论文格式范文
    • <strike id="iqsiq"><input id="iqsiq"></input></strike>
    • <ul id="iqsiq"></ul>
      <fieldset id="iqsiq"></fieldset>