CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - tcp client server linux
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - tcp client server linux - List
[
Internet-Network
]
TCPIP-vol3.linux.dist
DL : 0
Douglas Comer,《用TCP/IP进行网际互连 第3卷:客户机-服务器编程和应用(第2版)》 或其英文版 Internetworking With TCP/IP Vol III: Client-Server Programming And Application (Second Edition) 整书源码
Update
: 2008-10-13
Size
: 62.13kb
Publisher
:
阎利
[
SourceCode
]
linux TCP UNIX domain
DL : 0
1、TCP UNIX 2、C/S Mode
Update
: 2012-05-25
Size
: 2.19kb
Publisher
:
arvin_fresh@sina.cn
[
Linux-Unix
]
UnixTCP
DL : 0
Unix/Linux下服务端/客户通过TCP/IP通讯的程序-Unix/Linux server/client through the TCP/IP communications procedures
Update
: 2025-02-17
Size
: 76kb
Publisher
:
Scott
[
Internet-Network
]
TCPIP-vol3.linux.dist
DL : 0
Douglas Comer,《用TCP/IP进行网际互连 第3卷:客户机-服务器编程和应用(第2版)》 或其英文版 Internetworking With TCP/IP Vol III: Client-Server Programming And Application (Second Edition) 整书源码-err
Update
: 2025-02-17
Size
: 62kb
Publisher
:
阎利
[
Linux-Unix
]
TCP
DL : 0
linux环境下的TCP应用程序,有客户端和服务器端.-linux environment TCP applications have client and server.
Update
: 2025-02-17
Size
: 2kb
Publisher
:
xj216
[
Internet-Network
]
linux-socket
DL : 0
本Linux网络应用程序采用客户-服务器模型,并发型交互。在OSI参考模型的传输层,通过调用TCP套接字(Socket)的各种函数,使服务器和各个客户端之间建立快速可靠的连接,处理客户机发送的数据,实现流量检测与控制。-The Linux web applications in client- server model, and cross-hair. OSI reference model in the transport layer, by calling the TCP socket (Socket) of a variety of functions, so that the server and the client between the fast and reliable connections to deal with the client to send data, the achievement of traffic detection and control.
Update
: 2025-02-17
Size
: 37kb
Publisher
:
ll
[
Internet-Network
]
tcp-ip
DL : 0
Linux下的tcp和udp的服务器客户端通讯框架类,完整实例含makefile-Linux under the tcp and udp client server communications framework category, complete with examples makefile
Update
: 2025-02-17
Size
: 47kb
Publisher
:
Janferry
[
TCP/IP stack
]
SOCKET
DL : 0
TCP/IP编程的基础--socket 包括C/JAVA TCP/UDP 服务端和客户端 六套代码,供新人学习、老人测试联调用 支持win32 Linux(JAVA版本的需要自己新增JDK)-TCP/IP programming basis- socket including C/JAVA TCP/UDP server and client six sets of code for the new study, elderly test joint call to support win32 Linux (JAVA version of the need to add JDK)
Update
: 2025-02-17
Size
: 9kb
Publisher
:
冯进荣
[
Linux-Unix
]
TCPecho
DL : 0
在Linux/Unix环境下的网络编程,是TCP/IP的网际互联中的ECHO服务。系程序针对TCP客户端,,作用是服务器返回从客户处收到的所有数据-In Linux/Unix network programming environment is the TCP/IP Internet connectivity services in the ECHO. Department procedures for TCP client, is the server returns from the client received all the data
Update
: 2025-02-17
Size
: 1kb
Publisher
:
杨敏
[
Internet-Network
]
ftp_client_server
DL : 0
here is a C++ code for TCP server and client on linux mechine that listens on a specific port and then replies back to the client-here is a C++ code for TCP server and client on linux mechine that listens on a specific port and then replies back to the client
Update
: 2025-02-17
Size
: 1kb
Publisher
:
Imran
[
Internet-Network
]
TCP
DL : 0
TCP client and TCP server for Linux!
Update
: 2025-02-17
Size
: 4kb
Publisher
:
svetozar
[
Internet-Network
]
clientserver
DL : 0
This contains various programs on client server connectivity using TCP and UDP packets. It is executable in linux environment.
Update
: 2025-02-17
Size
: 14kb
Publisher
:
pratheek19
[
Internet-Network
]
LINUX
DL : 1
数据的发送与接收recv, send, write, read,TCP服务器, TCP客户端-Send and receive data, recv, send, write, read, TCP server, TCP client
Update
: 2025-02-17
Size
: 2kb
Publisher
:
褚嵩
[
Internet-Network
]
tcp-client-server-c
DL : 0
tcp code for linux in c
Update
: 2025-02-17
Size
: 1kb
Publisher
:
ank
[
Internet-Network
]
tcp
DL : 0
tcp客户端服务器程序,直接可以在linux下以两个进程形式运行-tcp client server program, directly in the form of two processes under linux running
Update
: 2025-02-17
Size
: 2kb
Publisher
:
刘佳楠
[
Internet-Network
]
tcp-client-server
DL : 0
Linux下Qt的网络编程,QTcpserver的使用,客户端和服务器的建立及简单应用-Linux network programming under Qt, QTcpserver use, build client and server, and simple application
Update
: 2025-02-17
Size
: 5kb
Publisher
:
周一
[
Linux-Unix
]
tcp
DL : 0
在linux嵌入式平台上进行TCP通信代码(TCP communication code on Linux Embedded Platform)
Update
: 2025-02-17
Size
: 702kb
Publisher
:
小清奈
[
Linux-Unix
]
linux进程之间的通讯综合实例
DL : 0
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使用共享内存来交互 步骤是:shmget->shmat->直接读写--->shmdt shmctl(删除) 可以man C与D之间使用消息传递进行 msgget-->msgrcv->msgsnd (注意这里的返回值判断发送正确与否 不是发送的字节数) D使用fork() 创建了一个进程 E D跟E之间使用无名管道进行交互 E程序中可以使用有名管道 进行通讯。(A<========>B<=========>C<=====>D<======>E Between the A and the B processes, the process of master socket is passed through the socket of the TCP: A server side: Socket -->bind---->listen---->accept send read B client: Socket-->connect->read send Do not understand the ability to man man socket B and C interact with shared memory The step is: shmget->shmat-> read and write --->shmdt shmctl directly (delete) Can man Message passing between C and D Msgget-->msgrcv->msgsnd (note that the return value here determines whether to send correctly or not the number of bytes sent) D uses fork () to create a process E Interaction between D and E using anonymous pipes E programs can communicate with famous pipes.)
Update
: 2025-02-17
Size
: 4kb
Publisher
:
数据包
[
Other
]
TCP_Socket
DL : 0
完成了Linux下简单的TCP套接字编程,是一个完整的TCP客户端/服务器实例(The simple TCP socket programming under Linux is completed, which is a complete TCP client / server instance)
Update
: 2025-02-17
Size
: 18kb
Publisher
:
amr1199
[
TCP/IP stack
]
TCP协议客户端服务器间视频传输c源码
DL : 1
此程序可实现windows客户端与client服务器端的文件传输。(This program can achieve Windows client and client server-side file transfer.)
Update
: 2025-02-17
Size
: 2kb
Publisher
:
xihananhai
«
1
2
3
4
5
6
7
8
9
10
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.