Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - socket
Search - socket - List
socket通信,客户端服务器端集成于一体。 已测试通过-socket communication, client server-side seamless integration. Have been tested
Update : 2024-05-16 Size : 7207936 Publisher : 沧海一笑

DL : 0
基于VC6.0的socket方面的编程,服务器端和客户端通讯-VC6.0 side of the socket-based programming, server-side and client communications
Update : 2024-05-16 Size : 236544 Publisher : zeng

DL : 0
里面有两个MFC程序,一个是网络socket收,一个是网络socket发,还有不错的界面。能够正常传送一个文件。-MFC there are two procedures, a network socket is closed, a network socket hair, there is a good interface. To the normal transmission of a file.
Update : 2024-05-16 Size : 5196800 Publisher : syt

我自己对Socket的封装,更好的方便户。使用时将该类加到工程下就可以了。-Socket my own package, and better convenience households. When used under the category of works added to it.
Update : 2024-05-16 Size : 3072 Publisher : 付恩宇

DL : 0
简单的socket编程。里面有客户端&服务器端程序。请大家下载使用-Simple socket programming. There are client
Update : 2024-05-16 Size : 5120 Publisher : sjt

DL : 0
windows socket 编程 这是一个客户端和服务器的源代码-windows socket programming This is a client and server source code
Update : 2024-05-16 Size : 3072 Publisher : tacho

DL : 0
select socket linux网络编程-select socket
Update : 2024-05-16 Size : 1024 Publisher : fcode

Socket实例,大家也许有用,我真的不想再写了,还非让写够20字。-Socket example, everyone may be useful, I really do not want to write, and also non-written enough to allow 20 characters.
Update : 2024-05-16 Size : 173056 Publisher : pengwei

DL : 0
当你进入 UNIX 的神秘世界后,立刻会发现越来越多的东西难以理解。对于大多数人来说,BSD socket 的概念就是其中一个。这是一个很短的教程来解释他们是什么、他们如何工作并给出一些简单的代码来解释如何使用他们。 -UNIX When you enter the mysterious world soon will find more and more difficult to understand things. For most people, BSD socket concept is one of them. This is a very short tutorial to explain what they are, how they work and give some simple code to explain how to use them.
Update : 2024-05-16 Size : 8192 Publisher : lw

DL : 0
通过socket编程,编写两个独立运行的C++程序,一个为服务器,一个是客户端。 本次作业能实现客户端对服务器的下载文件和上载文件的操作。 客户端:D盘的FTP文件夹存放要上传的文件,F盘的FTP文件夹存放下载的文件。 服务器端:D盘的FTP文件夹存放供用户下载的文件,F盘的FTP文件夹存放用户上载的文件。- socket
Update : 2024-05-16 Size : 485376 Publisher : batilei

DL : 0
socket编程源码,一个用socket编写的多人即时通信工具-socket programming source, a socket prepared to use more than instant messaging tool
Update : 2024-05-16 Size : 66560 Publisher : chai

DL : 0
socket通信的源代码。可以直接用GCC编译.-socket communication.
Update : 2024-05-16 Size : 1024 Publisher : fx

DL : 0
本书籍包含源码,通过实例详细介绍在Linux下进行socket编程。-The packet introduce the details of socket programming under Linux with lots of examples.
Update : 2024-05-16 Size : 69632 Publisher : 王海

DL : 0
基于SOCKET的文件传输,软件平台为JAVA,主要为文件传输方面的网络传输-the code of socket about the file transt
Update : 2024-05-16 Size : 7168 Publisher : liwei

DL : 0
Socket控件服务器端Delphi演示程序源码.rar-Socket server-side controls Delphi demo program source code. Rar
Update : 2024-05-16 Size : 192512 Publisher : delphigood

DL : 0
delphi中的SOCKET使用的简单程序-delphi in SOCKET easy to use program
Update : 2024-05-16 Size : 445440 Publisher : yyh

DL : 0
socket编程。winsock编程实现网络通信。 非阻塞模式实现面向连接一个服务器和多个客户端的收发数据(select模型) 阻塞模式实现面向无连接的一对一的通信 1.学习通过winsock编程实现网络通信。 2.学习面向连接和面向无连接的网络通讯方式的编程。 3.学习阻塞和非阻塞模式的网络通讯的编程。 4.熟悉与winsock有关的API函数的用法。 -socket programming. winsock network communications programming implementation. Non-blocking mode of connection-oriented implementation of a server and multiple client to send and receive data (select models) for non-blocking mode of communication to connect one-on-one 1. Learn through winsock network communications programming implementation. 2. Study connection-oriented and connectionless-oriented network communication programming. 3. Learn obstructive and non-blocking mode of network communication programming. 4. Familiar with winsock related to the usage of API functions.
Update : 2024-05-16 Size : 7334912 Publisher : qingangjun

DL : 0
client.c -- a stream socket client demo server.c -- a stream socket server dem-client.c- a stream socket client demo server.c- a stream socket server dem
Update : 2024-05-16 Size : 50176 Publisher : nameblue

Socket接口是TCP/IP网络的API,Socket接口定义了许多函数或例程,程序员可以用它们来开发TCP/IP网络上的应用程序。要学Internet上的TCP/IP网络编程,必须理解Socket接口。     Socket接口设计者最先是将接口放在Unix操作系统里面的。如果了解Unix系统的输入和输出的话,就很容易了解Socket了。网络的 Socket数据传输是一种特殊的I/O,Socket也是一种文件描述符。Socket也具有一个类似于打开文件的函数调用Socket(),该函数返 回一个整型的Socket描述符,随后的连接建立、数据传输等操作都是通过该Socket实现的。常用的Socket类型有两种:流式Socket (SOCK_STREAM)和数据报式Socket(SOCK_DGRAM)。流式是一种面向连接的Socket,针对于面向连接的TCP服务应用;数据 报式Socket是一种无连接的Socket,对应于无连接的UDP服务应用。-Socket interface is TCP/IP network API, Socket Interface defines a number of functions or routines, the programmer can use them to develop TCP/IP network applications. Study on the Internet want TCP/IP network programming, we must understand the Socket Interface. Socket Interface Designer is the first interface on the Unix operating system inside. If you know Unix system input and output, then it is easy to understand the Socket. Socket data transmission network is a special kind of I/O, Socket is a file descriptor. Socket also has a similar function call to open the file of the Socket (), the function return an integer of Socket descriptor, then the connection set up, data transmission and other operations through the implementation of the Socket. Socket type commonly used in two ways: streaming Socket (SOCK_STREAM) and data reported type Socket (SOCK_DGRAM). Streaming is a connection-oriented Socket, for in the TCP connection-oriented service applications Datagram Socket t
Update : 2024-05-16 Size : 1406976 Publisher : 陈威

DL : 0
一个socket程序,可以实现聊天功能,用java实现的,很好-A socket program, you can achieve chat with java implementation, and good
Update : 2024-05-16 Size : 3072 Publisher : ys991508
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 50 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.