s1.c是server,c.c是client, server負(fù)責(zé)接收client傳的數(shù)字進(jìn)行運(yùn)算並回傳,運(yùn)用了同步的機(jī)制。編譯須加 -lsocket -lpthread -lrt
標(biāo)簽: server
上傳時(shí)間: 2014-01-02
上傳用戶:athjac
The Funambol J2ME Mail Client aims to be a light, easy to use, free email client for J2ME devices. The first release comes with a simple but effective UI, and a storage limited to the internal RMS only. This makes the application compatible with most of the phones around (minimum requirements are: MIDP2.0, CLDC 1.0, 512k of Storage). The mail synchronization using SyncML 1.2 over HTTP, thus removing any problem related to the access to IMAP or POP ports. The mail client synchonizes its address book with the one on the server, Its design is modular and can be extended in future with other mail protocols, a more sophisticated UI and access to the phone s AddressBook or filesystem for the devices allowing this. See the javadoc for more information on the structure of the library.
標(biāo)簽: J2ME Funambol devices Client
上傳時(shí)間: 2014-01-05
上傳用戶:gououo
基于TCP的java多線程server,程序包含server和client,支持多多種文件多線程訪問,支持exception。訪問端口為6789
上傳時(shí)間: 2016-04-05
上傳用戶:llandlu
基于UDP實(shí)現(xiàn)E-Mail傳輸 工作過程描述: 客戶端描述: 1. Client(以下簡稱C端)端將郵件以規(guī)定的大小封裝為符合要求的UDP包。 2. 將封裝好的UDP包發(fā)出,并等待Server(以下簡稱S端)端收到相應(yīng)的UDP包后返回的回應(yīng)Acknowledge(以下簡稱為ACK)。若收到的為Positive ACK,則繼續(xù)發(fā)包;若收到的為Negtive ACK,則將應(yīng)發(fā)的包重發(fā)。 3. 直到C端將所有要發(fā)的包都發(fā)完,并都已經(jīng)收到S端的回應(yīng),最后發(fā)一個(gè)End包,直接關(guān)閉此進(jìn)程。 服務(wù)器端描述: 1. S端啟動(dòng)服務(wù)進(jìn)程,并監(jiān)聽相應(yīng)端口。 2. 若收到C端發(fā)出的有關(guān)請求,按如下情況給出相應(yīng)的反映: a. 將收到的包進(jìn)行檢測,若收到的包有錯(cuò)則拋棄(discard),并發(fā)給C端一個(gè)negtive ACK。 b. 將收到的包進(jìn)行檢測,若收到的包正常,則將此包進(jìn)行解包,將內(nèi)容輸出至一臨時(shí)文件;并發(fā)給C端一個(gè)positive ACK。 3.依次收到來自C斷的包,直到收到end為止,并關(guān)閉此進(jìn)程,轉(zhuǎn)回監(jiān)聽狀態(tài)。
標(biāo)簽: UDP E-Mail Client 封裝
上傳時(shí)間: 2014-12-08
上傳用戶:sxdtlqqjl
FileZilla is a cross-platform graphical FTP, FTPS and SFTP client a lot of features, supporting Windows, Linux, Mac OS X and more. FileZilla Server is a reliable FTP server for Windows. it is a Client App,and a linux gnu version. important:change EXT name to ".tar.bz2"
標(biāo)簽: cross-platform supporting FileZilla graphical
上傳時(shí)間: 2013-12-19
上傳用戶:weiwolkt
Java Webservice小例子。應(yīng)用XFire框架。WSA文件夾下是Server端,WSC下是Client端。
標(biāo)簽: Webservice Server XFire Java
上傳時(shí)間: 2017-01-22
上傳用戶:daoxiang126
Description: Microsoft?Windows?HTTP Services (WinHTTP) provides developers with a server-supported, high-level interface to the HTTP/1.1 Internet protocol. WinHTTP is designed to be used primarily in server-based scenarios by server applications that communicate with HTTP servers. WinHTTP is also designed for use in system services and HTTP-based client applications. WinHTTP is more secure and robust than WinInet. However, single-user applications that need FTP or gopher functionality, cookie persistence, caching, automatic credential dialog handling, Internet Explorer compatibility, or downlevel platform support should still consider using WinInet.
標(biāo)簽: server-supported Description developers Microsoft
上傳時(shí)間: 2017-02-07
上傳用戶:refent
vxworks CS模型的server的源碼,陸續(xù)上傳client的源碼
標(biāo)簽: vxworks server 模型 源碼
上傳時(shí)間: 2017-02-11
上傳用戶:chenbhdt
A very simple ftp server s source code for demonstration. * It supports PASV/PORT modes and following operations: * ls,pwd,cwd,get,put,dele. * I have tested it using following ftp clients: * 1. Windows XP s command line ftp client, * 2. IE 6.0, * 3. Redhat 9.0 s ftp client, * 4. CuteFTP 8, * I ll introduce more functions and improve its performance
標(biāo)簽: demonstration supports followi simple
上傳時(shí)間: 2013-12-22
上傳用戶:wl9454
(1)實(shí)現(xiàn)下載功能 server()為服務(wù)端主程序,該程序主要是用來實(shí)現(xiàn)服務(wù)端的建立,首先要啟動(dòng)Winsock,然后需要建立服務(wù)端的套接字,然后進(jìn)行與客戶端的連接,當(dāng)客戶端去人響應(yīng)后就對客戶端發(fā)送文件,客戶端接受文件。 client()為客戶端程序,該程序主要是用來實(shí)現(xiàn)客戶端的建立,首先要啟動(dòng)Winsock,然后需要建立客戶端的套接字,然后進(jìn)行與服務(wù)端的連接,當(dāng)與服務(wù)端連接上以后,客戶端接受文件。 (2)實(shí)現(xiàn)上傳功能 在實(shí)現(xiàn)了下載功能之后,還要求能實(shí)現(xiàn)上傳功能,也就是說,能夠?qū)⒖蛻舳说奈募l(fā)送到服務(wù)端去,此時(shí),相當(dāng)于下載的逆運(yùn)算,真正實(shí)現(xiàn)了客戶端與服務(wù)端的互通,實(shí)現(xiàn)了兩臺(tái)PC機(jī)的互通。 (3)實(shí)現(xiàn)備份傳輸 在傳輸過程中,為了避免文件丟失,或者只是傳到一個(gè)地方,所以增加了備份傳輸,相當(dāng)于加了一個(gè)保險(xiǎn),是文件得到了安全保障
上傳時(shí)間: 2014-11-08
上傳用戶:teddysha
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1