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

搜索资源列表

  1. easelib

    0下载:
  2. 这是本人在Linux下开发经常使用的一组C++工具类,包括了Socket类、TCP服务类、UDP服务类、Mysql数据库操作类、日志类、配置文件解析类、日期时间操作类、MD5和Base64加解密类、线程和线程池类、XML文件解析类等-this is my development in Linux are frequently used by a group C Tools categories, including the Socket class. TCP services category,
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:69689
    • 提供者:刘忠
  1. check_sum_

    0下载:
  2. /*** *** check_sum.c********************/ /* linux 利用原始socket抓包,并进行tcp封包伪造,进行正确的校验和计算的例子程序.****/ /*作者 CBCHEN .CBCHEN@ZZIA.EDU.CN***************/ /*在 linux2.4,环境,gcc 下编译通过*****/-/*** *** *** *** check_sum.c ******************* * / / * linux using prim
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:2759
    • 提供者:陈东
  1. CFileTransfer

    1下载:
  2. 基于VC++6.0点对点的文件传输。socket编程 tcp/ip- Design and Realization of Point-to-Point Files Transfer with Visual C++6.0
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:1197
    • 提供者:黄涛
  1. TCP_socket

    0下载:
  2. Linux C Socket Client.c Server.c
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:1649
    • 提供者:hye
  1. socket

    0下载:
  2. Linux下C语言实现简单的socket编程,可以建立简单的tcp连接并实现登录、搜索、分享功能-C language socket programming under Linux, you can create simple tcp connection and achieve the registry, search, sharing features
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-05
    • 文件大小:6032
    • 提供者:吴浩
  1. tcpudp

    0下载:
  2. 用C语言编写的简单tcp,udp连接程序,用于Linux下的套接字实现-C language with a simple tcp, udp connection program for Linux under the socket to achieve
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:2198
    • 提供者:王军
  1. Sockets-2.3.9.2

    1下载:
  2. C++ TCP IP Socket Sockets-2.3.9.2
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:322407
    • 提供者:mitica
  1. tcp

    0下载:
  2. 用标准C实现的TCP/IP socket通讯函数,基于unix平台-Implemented using standard C TCP/IP socket communication functions based on unix platforms
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:1797
    • 提供者:huxiang
  1. socket.tar

    0下载:
  2. Linux TCP socket通讯,visual C++实现-Linux TCP socket communication, visual C++ implementation
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:30720
    • 提供者:yilan guo
  1. tcp_server_client

    0下载:
  2. socket通信的源码,其中一端是php代码,另外一端是linux下的c代码-linux kernel scenario analysis of the electronic version of the book introduces the principles of linux kernel
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:1610
    • 提供者:michaelcjt
  1. lab4

    0下载:
  2. The subject of this programming assignment is writing a simple client-server application that uses (network) sockets.-The subject of this programming assignment is writing a simple client-server application that uses (network) sockets. The client-s
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-22
    • 文件大小:5279
    • 提供者:ChuChu
  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. linux进程之间的通讯综合实例

    0下载:
  2. A<========>B<=========>C<=====>D<======>E A与B进程之间通过TCP的socket传递 主要掌握socket的流程: A服务器端: socket -->bind---->listen---->accept send read B客户端: socket-->connect->read send 不懂的可以man一下 man socket B与C
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-01-08
    • 文件大小:4096
    • 提供者:数据包
  1. socket UDP

    0下载:
  2. TCP/IP协议叫做传输控制/网际协议,又叫做网络通信协议。实际上,它包括上百个功能的协议。 套接字(socket):在网络中用来描述计算机中不同程序与其他计算程序的通信方式。 套接字分为三类; 流式socket(SOCK_STREAM):提供可靠,面向连接的通信流;它使用TCP协议,从而保证了数据传输的正确性和顺序性。 数据报socket(SOCK_DGRAM):数据报套接字定义了一种无连接的服务,数据通过相互独立的报文进行传输,无序的,并且不保证可靠,无差错的。它使用的数据报协议是U
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-04-22
    • 文件大小:1024
    • 提供者:LoenWolf
搜珍网 www.dssz.com