登录
首页 » Windows Socket编程 » 这是一个集客户端和服务端一身的网络传输小程序,传输速度蛮快的。...

这是一个集客户端和服务端一身的网络传输小程序,传输速度蛮快的。...

于 2022-05-14 发布 文件大小:65.25 kB
0 65
下载积分: 2 下载次数: 1

代码说明:

这是一个集客户端和服务端一身的网络传输小程序,传输速度蛮快的。-This is a client and server of a network of small procedures, transmission speed pretty fast.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 合成地震记录序,主要用于石油勘探中的正演模拟
    合成地震记录程序,主要用于石油勘探中的正演模拟-this procedue is user for syn seismic data, mostly use for forword modeling in oil exploration
    2023-06-23 01:50:03下载
    积分:1
  • 网络常用的api原代码.c文件和.h文件用于网络通讯,网络传输等内附一简单的应用例子...
    网络编程常用的api原代码.c文件和.h文件用于网络通讯,网络传输等内附一简单的应用例子-Network Programming common api original code. C and. H documents for network communications, network transmission containing a simple application example
    2023-01-25 00:35:03下载
    积分:1
  • socket 接口写两个序,分别为客户序(client.c)和服务器序(server.c),该序应能实现下述命令功能: get:取远方的一个...
    用socket 编程接口编写两个程序,分别为客户程序(client.c)和服务器程序(server.c),该程序应能实现下述命令功能: get:取远方的一个文件 put:传给远方一个文件 pwd:显示远主当前目录 dir:列出远方当前目录 cd :改变远方当前目录 ? :显示你提供的命令 quit :退出返回 -Socket programming interface used to prepare the two procedures, namely client (client.c) and server (server.c), the program should be able to function to achieve the following command: get: get a file from afar put: to the distance a file pwd: display current directory far the main dir: lists the current remote directory cd: to change the current directory from afar? : Shows you the command quit: exit to return to
    2023-02-27 03:40:03下载
    积分:1
  • P2P c++ sdk
    P2P dll c++ ,  static emReturnType SetAppType(emAppType AppType);//设置程序类型,服务器emAppType_Server或者客户端emAppType_Client  static emReturnType SetClientCallback(IMsgCallback *pMsgCallback);//设置回调类,回调类继承IMsgCallback接口  static emReturnType Startup();//开启网络  static emReturnType Cleanup();//关闭网络  //Server  以下函数是服务器调用  static emReturnType BeginService(unsigned short nPort);//如果是服务器,调用该函数开启服务,nPort:端口号  static emReturnType EndService();//服务器退出的时候,调用该函数关闭服务  //Client  以下函数是客户端调用  static emReturnType Logon(LOGONINFO* pLogonInfo);//函数登录服务器。pLogonInfo:登录信息,详细见P2PHeaderDef.h->LOGONINFO  static emReturnType Logout();//登出服务器  static emReturnType ConnectAnchor(CLIENTINFO* pClientInfo);//连接主播,该函数是用户调用  static emReturnType SendP2PMSG(CLIENTINFO* pClientInfo, char* pszMsg, int nMsgLen);//发送P2P消息,pClientInfo,要发送的客户信息,如果是用户,则pClientI
    2022-02-03 19:54:38下载
    积分:1
  • 这是ecf的原代码,是个plugin,可以实现即时通讯。
    这是ecf的原代码,是个plugin,可以实现即时通讯。-ecf This is the original code, is a plugin can achieve instant messaging.
    2022-04-11 08:27:22下载
    积分:1
  • better e
    比较好的电子商务开发系统,可供大家学习-better e-commerce development system, we can learn
    2022-02-15 03:56:31下载
    积分:1
  • MIB browser for network management queries each host object
    MIB 浏览器 用于网络管理 查询各个主机的对象-MIB browser for network management queries each host object
    2022-07-18 20:31:03下载
    积分:1
  • Medical websites source code, health management class website Jianzhan preferred...
    医疗网站源代码,健康管理类网站建站首选。-Medical websites source code, health management class website Jianzhan preferred.
    2023-06-16 17:00:05下载
    积分:1
  •  各个线任务分配是这样实现的。在开始下载时,文件平均分成若干块进行下载。如第一个线一开始的任务是从文件的0位置开始下载一直到72908位置处。线1每次下载...
     各个线程任务分配是这样实现的。在开始下载时,文件平均分成若干块进行下载。如第一个线程一开始的任务是从文件的0位置开始下载一直到72908位置处。线程1每次下载一块数据后就要调整任务,如第一次下载了20800字节的数据,那么线程1的任务将改为:20800-72908。如此下去,直到任务为72908-72908时表示线程1完成了当前的下载任务。此时,线程1就分析各个线程的任务,找出任务最为繁忙的一个线程:如线程3:14816-218724。那么线程1就自动去调整任务,拿50%的任务来再次下载。周而复始直到各个线程都完成任务。不过这里有一点需要注意:为了避免重复下载部分数据,在调整任务的时候,起始的文件便移量必须加上接受缓冲器的字节数,因为如前面所举的列子来看。线程1和线程3在平衡负载的时候,线程正在下载数据,如果所剩的数据比接受缓冲器的大小还小,线程1和线程3的部分下载数据将会重复。   在调整任务和分析任务的时候,会发现一个问题。就是读取文件数据太过频繁。于是我用了一个数据结构。在下载文件的过程中始终打开配置文件,这样速度提高了很多。在文件下载完毕后关闭文件。-various threads assignment is achieved. At the beginning of the download, the paper divided into a number of pieces of the download. As a thread of a task is to start from the position paper of 0 to start the download has 72,908 locations Department. Thread a download each one will have to adjust the data tasks, such as the first downloaded 20,800 gigabytes of data, then threaded a task will be re :20800- 72908. This situation continues until the mandate of 72908-72908 said threaded a completion of the cu
    2022-03-20 03:50:55下载
    积分:1
  • UDP多播套接字实现
    socket实现udp组播,需要用UDP通信可以参照-udp multicast socket implementation
    2022-02-11 12:50:37下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载