CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - C Socket

搜索资源列表

  1. UDP.tar

    0下载:
  2. 在Linux下用C语言编写的UDP套接口程序,在Linux下打开两个终端,一个终端运行服务器端程序,一个终端运行客户端程序,在执行客户端后面加上 localhost 8888就可用进行网络通信了。-Under Linux using C language UDP socket program in Linux, open two terminals, a terminal server to run the program, run a terminal client program, foll
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:4930
    • 提供者:梁小涵
  1. Linux

    0下载:
  2. 本文介绍了在Linux环境下的socket编程常用函数用法及socket编程的一般规则和客户/服务器模型的编程应注意的事项和常遇问题的解决方法,并举了具体代 码实例。要理解本文所谈的技术问题需要读者具有一定C语言的编程经验和TCP/IP方面的基本知识。要实习本文的示例,需要Linux下的gcc编译平台支持-This article describes the Linux environment, the use of socket programming and socket programmi
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:16825
    • 提供者:王平
  1. server

    0下载:
  2. 用C语言在Linux环境下实现SOCKET通信的服务器端-In the C language in Linux environment of the server SOCKET communication realization
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:1542
    • 提供者:ttt
  1. UNIXCcode

    0下载:
  2. unix c编程代码 代码中包含 进程间通信socket-unix c biancheng form liwanming xiwangnixihuan
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:150533
    • 提供者:李万明
  1. UnixSocketIO

    0下载:
  2. Linux进程间通讯的一种,本地Socket通讯,用C封装成非常简单的库,一共5个接口,支持阻塞延时,还有demo程序。-Linux inter-process communication a local Socket communication using C encapsulated into a very simple library, a total of five interfaces to support the blocking delay, as well as the demo
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3717
    • 提供者:李勃
  1. CyuyanLiaoTianyuanma

    0下载:
  2. c语言写的网络聊天 本程序,要在linux或XP环境下运行!要自己修改IP地址。 主要用到了,网络套接字socket和fork 函数!-c language Internet chat program to run on Linux or XP environment. To modify the IP address. The main use of the network socket socket and fork function!
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:4021
    • 提供者:陌小轩
  1. 2010.6.5

    0下载:
  2. 校园网计费管理系统,包含socket、hook 以及水晶报表,C/S架构,有开机自启动,最小化图标,包含计费、卡、账户、权限、管理员管理等功能模块。-Campus network accounting management system, including sockets, hook, as well as Crystal Reports, C/S architecture, boot from the start, the minimize icon, including billing,
  3. 所属分类:Windows Kernel

    • 发布日期:2017-06-14
    • 文件大小:22129084
    • 提供者:计超
  1. transport-encrypt-demo.tar

    0下载:
  2. 两端传输加密的demo程序,采用c/s架构的socket通讯,加密算法使用RC4算法-Both ends of the transmission of encrypted demo program, c/s architecture socket communication, encryption algorithm using the RC4 algorithm
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-11-11
    • 文件大小:4885
    • 提供者:liuzhuo
  1. cpplogger

    0下载:
  2. 一个简单的日志库,仅依赖boost,支持输出到console,socket,callback和file,包括一个c++类及对c++类的c api封装.-a very simple c++ logger library, supporting console, file, callback and socket and also including a c wrapper it only depends on the boost.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-06
    • 文件大小:3991
    • 提供者:朱五
  1. txtd.tar

    0下载:
  2. 一个基于c 的windwos线程的管理的一个框架。主要包括读写配置文件、读写日志函数、加载DLL文件、异步非阻塞Socket网络通信、进程监控-C the Windwos thread of management based on a framework. Mainly including read and write configuration files, read and write the log function to load the DLL file, asynchronous n
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-22
    • 文件大小:564392
    • 提供者:单鹏飞
  1. Socket_C

    0下载:
  2. Linux下网络编程,Socket,C语言,适合嵌入式linux下开发网络编程的朋友-Linux Network Programming, Socket, C language, under development for embedded linux network programming friends
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:23979
    • 提供者:阿华
  1. sock_cnt

    0下载:
  2. 基于c语言的socket程序,这是服务器的程序,可以这个传输文字内容-The socket based on the c language program, which is the server program, you can transfer text of this
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-09
    • 文件大小:3886
    • 提供者:wa
  1. IO-(2)

    0下载:
  2. *使用select函数可以以非阻塞的方式和多个socket通信。程序只是演示select函数的使用,即使某个连接关闭以后也不会修改当前连接数,连接数达到最大值后会终止程序。 1. 程序使用了一个数组fd,通信开始后把需要通信的多个socket描述符都放入此数组 2. 首先生成一个叫sock_fd的socket描述符,用于监听端口。 3. 将sock_fd和数组fd中不为0的描述符放入select将检查的集合fdsr。 4. 处理fdsr中可以接收数据的连接。如果是sock_fd,
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:2796
    • 提供者:辰枫
  1. LFSR

    0下载:
  2. 流密码算法C++实现,使用六级线性反馈移位寄存器,生成64位的密钥,在对数据进行加密,同时整合Socket编程,实现进程间加密通信。-C++ stream cipher algorithm implementation, using six linear feedback shift register to generate a 64-bit key to encrypt data at the same time integrating Socket programming, encrypte
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-10
    • 文件大小:2175278
    • 提供者:lecision
  1. 171

    0下载:
  2. socket在Linux下的c编写的服务器端-socket server
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:964
    • 提供者:朱新立
  1. m8xx_pcmcia

    0下载:
  2. m8xx_pcmcia.c - Linux PCMCIA socket driver for the mpc8xx series.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-29
    • 文件大小:8436
    • 提供者:fhlqgw
  1. vrc4171_card

    0下载:
  2. vrc4171_card.c, NEC VRC4171 Card Controller driver for Socket Services.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:4603
    • 提供者:cqkvnx
  1. Linux

    1下载:
  2. 东大软院Linux大实验。在Linux环境下通过C语言实现模拟猜数的游戏,实现客户端与服务器之间的通信。-East Hospital Linux soft big experiment. Guessing game based on socket communications. Client and server side.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-01-03
    • 文件大小:257024
    • 提供者:yaoyao
  1. socket_sysfs

    0下载:
  2. socket_sysfs.c most of socket-related sysfs output. -socket_sysfs.c most of socket-related sysfs output.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:1438
    • 提供者:siununhv
  1. chatting-room_CSharp__socket

    0下载:
  2. 利用C#语言实现Socket聊天程序,实现信息的发送和接收。 开发平台 Visual Studio-Socket use C# language chat program, sending and receiving information. Visual Studio development platform
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-04
    • 文件大小:97457
    • 提供者:李鹏
« 1 2 3 4 5 67 »
搜珍网 www.dssz.com