CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 并发服务器

搜索资源列表

  1. FileZilla_FTP_Server_Source_Compile

    0下载:
  2. FileZilla服务器编译说明,是开源的FTP服务器,用C++写的,通过分析它的源代码,可以掌握C++网络编程以及高并发服务器的设计。-FileZilla Source Compile
  3. 所属分类:Project Manage

    • 发布日期:2017-11-16
    • 文件大小:8948
    • 提供者:人间爱
  1. serverDesign

    0下载:
  2. 通过多个案例详细解析,细致全面地说明大型高并发服务器架构方案。-Through detailed analysis of a number of cases, a comprehensive and detailed descr iption of a large high concurrent server architecture program.
  3. 所属分类:Project Design

    • 发布日期:2017-05-11
    • 文件大小:2153973
    • 提供者:song
  1. SELECT_SERVER

    0下载:
  2. 通过I/O多路复用并发服务器实现局域网间的简单通信实例-Through I/O multiplexing concurrent server implements a simple instance of communication between the LAN
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-05
    • 文件大小:7115
    • 提供者:天灏
  1. 1

    0下载:
  2. linux下一个多线程并发服务器的实例,用于学习多线程编程及相关操作系统的知识-linux under a multi-threaded concurrent server instances for learning multithreaded programming and operating systems knowledge
  3. 所属分类:Driver develop

    • 发布日期:2017-04-04
    • 文件大小:1474
    • 提供者:dy
  1. socket_chat_linux

    0下载:
  2. Linux平台下使用socket套接字网络通信技术实现一个并发服务器,实现局域网下的多用户的聊天程序。-Linux platform using the socket socket network communication technology to realize a concurrent server, realize
  3. 所属分类:Linux Network

    • 发布日期:2017-04-01
    • 文件大小:10340
    • 提供者:李飞
  1. concurrent-servers

    0下载:
  2. 在linux操作系统里面实现并发服务器,通过linux系统实现,呈上源代码。-The implementation of concurrent server in Linux operating system, through the Linux system, with source code.
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-14
    • 文件大小:5421
    • 提供者:郭兆乾
  1. NO7

    0下载:
  2. 一个简单的多进程并发服务器程序,包含客户端与服务器的源码,由C语言实现,在Linux上运行,GCC编译。-A simple and more complicated process server, including client and server source code, implemented by the C language, runs on Linux, GCC compiler.
  3. 所属分类:Linux Network

    • 发布日期:2017-04-09
    • 文件大小:2486
    • 提供者:easy
  1. Desktop

    0下载:
  2. Linux上实现的多线程并发服务器程序,包含客户端与服务器源码,GCC编译。-Implemented on Linux multi-threaded server, including client and server source code, GCC compiler.
  3. 所属分类:Linux Network

    • 发布日期:2017-04-14
    • 文件大小:2805
    • 提供者:easy
  1. NO9

    0下载:
  2. 多路IO复用实现的并发服务器程序,在Linux上实现,GCC编译。-IO multiplexing multiple concurrent server program realization, implemented on Linux, GCC compiler.
  3. 所属分类:Linux Network

    • 发布日期:2017-04-13
    • 文件大小:3219
    • 提供者:easy
  1. Picture_Transfer

    0下载:
  2. 此代码是基于TCP协议的Soket通信程序,通过测试,程序运行正常,可以传输任何程序,包括 文本文件和其他*.doc *.mp3等各种各样的文件。这是个并发服务器。-This code is based on the TCP protocol Soket communication program, pass the test, the program is running properly, you can transfer any program, including text file
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-13
    • 文件大小:2198
    • 提供者:李文通
  1. IOCP_Ser_ver

    0下载:
  2. IOCP 实现一个简单高并发服务器程序它能够有效的为多个客户端服务,利用IOCP编程API,它也提供了一些实际问题的解决办法,并且提供了一个简单的带回复的文件传输的客户端/服务器。-Implement a simple high concurrency IOCP server program
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-07
    • 文件大小:37262
    • 提供者:Bak2013
  1. remote-control

    0下载:
  2. 这是一个linux下远程控制程序,采用并发服务器模型。客户端接收用户输入的命令,客户端通过套接字将命令传送给服务器端,服务器在收到用户的命令,对命令进行解析.在服务器端调用对应的命令,并将命令执行的结果发送给客户端,从而实现远距离控制的功能。服务器可同时对多个用户提供服务。-This is a remote control program under linux, using concurrent server model. The client receives commands entere
  3. 所属分类:Linux Network

    • 发布日期:2017-04-16
    • 文件大小:12751
    • 提供者:kobe messi
  1. tcp

    0下载:
  2. Linux下tcp并发服务器的实现。服务器端监听是否有请求,并循环接受收到的请求,每收到一个请求,fork()一次,通过子进程来完成客户端的请求。-Under Linux tcp achieve concurrent server. Monitor whether the server requests and circulation accept requests received, each receives a request, fork () once, by a child proce
  3. 所属分类:Linux Network

    • 发布日期:2017-04-15
    • 文件大小:8361
    • 提供者:
  1. udp

    0下载:
  2. Linux下udp并发服务器的实现。服务器循环接收客户端的消息,每收到一个消息,fork()一次,通过子进程来完成客户端的消息。与tcp并发不一样,他不必listen()和accept()。-Udp under Linux to achieve concurrent server. Server receives the client' s message loop, each receives a message, fork () once the child process to be
  3. 所属分类:Linux Network

    • 发布日期:2017-04-06
    • 文件大小:8102
    • 提供者:
  1. Linux-in-epoll-program

    0下载:
  2. Linux下基于epoll+线程池高并发服务器实现研究-linux in epoll program
  3. 所属分类:Communication

    • 发布日期:2017-04-03
    • 文件大小:438577
    • 提供者:rain
  1. socket

    0下载:
  2. Linux下socket编程示例,包括TCP/UDP编程,循环服务器、并发服务器等-Linux socket programming examples, including TCP/UDP programming cycle servers, concurrent server, etc.
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-25
    • 文件大小:127722
    • 提供者:甘攀
  1. tcp-select

    0下载:
  2. TCP并发服务器,使用IO多路复用来实现,对初学者学习有很大作用-TCP concurrent server, using IO multiplexing to achieve, there is a significant role for beginners to learn
  3. 所属分类:Linux Network

    • 发布日期:2017-04-25
    • 文件大小:11020
    • 提供者:常秀清
  1. dic

    1下载:
  2. 用tcp并发服务器实现了一个电子词典,可以实现查询,登陆,查询用户记录。-Concurrent with the tcp server implements an electronic dictionary, can query, landing, query the user record.
  3. 所属分类:Linux Network

    • 发布日期:2016-10-21
    • 文件大小:463872
    • 提供者:li
  1. serverDB

    0下载:
  2. 一个多线程并发服务器程序,服务端启动后,监听客户端连接,接受客户端消息,并操作数据库。-A multi-threaded concurrent server program, the server starts listening for client connections, the client accepts the message, and operation of the database.
  3. 所属分类:TCP/IP Stack

    • 发布日期:2017-05-24
    • 文件大小:8091761
    • 提供者:cc
  1. tcpbingfa

    0下载:
  2. TCP并发服务器,绑定套接字,套接字文件描述符-TCP concurrent
  3. 所属分类:Linux Network

    • 发布日期:2017-04-13
    • 文件大小:1763
    • 提供者:孙泰阳
« 1 2 3 4 56 7 8 9 10 ... 16 »
搜珍网 www.dssz.com