搜索资源列表
串口连接程序c语言
- 在linux下把串口映射成TCP/IP端口- Maps under linux the string mouth the TCP/IP port
tcpmap.c
- UNIX/LINUX TCP桥(或TCP端口映射器)-UNIX / Linux TCP Bridge (or TCP port mapping)
TCP_socket
- Linux C Socket Client.c Server.c
TCP-to-begin-same-time-multi-process
- 基于linux环境下的基于TCP/IP的C语言的并发多进程服务器程序。-Linux-based environment based on the TCP/IP-C-concurrent multi-process server program.
linux-chat-tcp
- linux下的聊天程序,使用TCP三次握手-chat program under linux, using the TCP three-way handshake
tcp
- linux下用C编写的TCP/IP 数据传送程序-linux using C prepared by TCP/IP data transfer procedures
sss
- securité du systéme d exploitation linux : Introduction La sécurité physique La sécurisation du processus d’amorç age Le BIOS Les principes fondamentaux relatifs au système et à l’utilisateur La sécurité du réseau TCP/IP La sécur
ftp
- linux下开发的ftp服务器,c语言编程,采用了tcp协议和ftp协议
client.c.tar
- sample TCP client linux/C
TCPtime
- Linux平台c语言TCP协议 时间/日期程序-Linux platform, TCP protocol c language time/date of program
tcpserver.c.tar
- 实现用tcp协议通信的主机端代码,此代码需要和客户端代码同时运行-Tcp protocol implementation to communicate with the host-side code, this code needs and client-side code to run
linux_C_QQ
- linux、c、TCP、IP、协议实现QQ公聊、私聊、传文件功能-linux、tcp、ip、QQ
cxxtools-1.4.8.tar
- Cxxtools 源码, Cxxtools把大部分linux C 库函数封装成C++类。封装方法巧妙高效,可以用于学习和直接使用。-Cxxtools is a collection of general-purpose C++ classes. It includes classes for: * argument parsing * logging * wrappers for threading (pthreads) * network
tcp_scan.c
- 自己写的一个基于tcp的扫描程序,语言为c,运行环境为linux.-Write a tcp based scanner, the language is c, operating environment for linux.
TCPtalk
- 用C写的基于linux下的简单的TCP聊天程序,可用于其他框架下的开发-Written using C under a simple linux-based TCP chat program can be used for other development under the framework of
tcp_server_client
- socket通信的源码,其中一端是php代码,另外一端是linux下的c代码-linux kernel scenario analysis of the electronic version of the book introduces the principles of linux kernel
1
- c 通信源代码,linux 下的源程序,linux 下的源程序-c tcp ip souce code c tcp ip souce code c tcp ip souce code c tcp ip souce code
client
- linux c tcp连接-linux c tcp
Linux-programming-ideas
- 本书内容分为4个部分:linux程序设计基础部分、linux用户空间网络编程部分、linux内核网络编程部分以及综合案例部分。内容包含linux系统概述、linux编程环境、linux文件系统简介、linux下的进程和线程、tcp/ip协议族、应用层网络服务程序、tcp编程、主机信息获取、数据io复用、udp编程、高级套接字、套接字选项、原始套接字、服务器模型、ipv6、linux 内核网络部分结构及分布、netfilter框架内报文处理程;解释多重继承问题的难点,展示RTTI的实际使用,描述了
linux进程之间的通讯综合实例
- 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