搜索资源列表
FTPServer0.01
- 实现了ftp服务器端的功能 (1)FTP服务器运行FTPd守护进程,等待用户的FTP请求。 (2)用户运行FTP命令,请求FTP服务器为其服务。 (3)FTPd守护进程收到用户的FTP请求后,派生出子进程FTP与用户进程FTP交互,建立文件传输控制连接 (4)用户输入FTP子命令,服务器接收子命令,如果命令正确,双方各派生一个数据传输进程FTP-DATA,建立数据连接,进行数据传输。 (5)本次子命令的数据传输完,拆除数据连接,结束FTP-
pipe_fork
- Linux网络编程。程序创建一个管道,并发起一个新的进程。父进程往管道里写数据,子进程往外读数据。
实验二302_22
- 使用系统调用fork()创建两个子进程。当此程序运行时,在系统中有一个父进程和两个子进程活动。让每一个进程在屏幕上现实一个字符:父进程显示字符’a’;子进程分别显示字符’b’和’c’。试观察记录屏幕上的显示结果并分析原因。-use system calls fork () to create two child process. When running, the system is a process and the father of two sub-process activities.
simptcpsercli.tar
- 一个简单的回调服务器/客户端的例子,练习unix网络编程。 目的是简单实践练习最基本的socket函数。 功能:客户端从中断读入数据,发送给服务器。服务器监听端口,当有客户端连接时派生一个子进程处理连接,子进程将客户端发来的数据原样返回给客户端。 考虑到linux系统的进程方面的管理方式,代码中加入了关闭僵死的子进程的内容。 程序中还有许多需要改进的地方,比如为了简化代码在读取字符串的时候用的gets函数等。-err
Socket_programing
- 熟悉Http协议的请求和响应格式,编写一个简单的Http服务器。 基本要求: 1 正确解析Http请求,实现简单的GET请求回应。 2 模拟一个对象(如:文件index.html)的GET回应(如:回应一个字符串),对于其他的对象,则根据Http响应格式回应对象不存在信息。 3 通过浏览器可检测自己的程序。如:输入http://the.ip.of.your.pc:serverPort/index.html,查看其响应结果。 4 对http请求的处理必须采用多进程实
1
- 主题:进程的管道通信 内容:这是一个设计型实验,要求自行编制程序。 使用系统调用pipe()建立一条管道,两个子进程分别向管道写一句话: Child process1 is sending a message! Child process2 is sending a message! 父进程从管道读出来自两个子进程的信息,显示在屏幕上。 要求: 1) 父进程先接收子进程1发来的消息,然后再接收子进程2发来的消息。 2) 实现管道的互斥使用,当一个子进程正在对
process--synchronization
- Linux进程的创建与父子进程同步,包括父进程创建子进程、查看进程家族树、父子进程同步-Linux process, the process of simultaneous creation and his son, including the parent process creates a child process, view the process of the family tree, father and son process synchronization
Sub-process-loads
- Linux子进程映像的重新加载,包含了2个实例程序-Linux image to reload the child process, contains two example programs
Soft-interrupt--examples
- 软中断通信实例3个,包括文本输出、显示字符、终止子进程-Example 3 soft interrupt communications, including text output, display characters, the child process to terminate
biaozhunhCSfuwuqi
- 标准的互联网C/S结构的网络服务器 其实就是利用进程的网络编程的知识来实现并发网络服务器 服务端创建子进程为客户端服务-Standard Internet C/S structure of the network server is actually using the process of network programming knowledge to implement concurrent network server to create a child process server
tcp_server_fork
- tcp协议通讯服务器端 通过创建子进程实现重复型服务器-tcp protocol communication server code
exercise3
- 先创建一个父进程,然后写一段程序再写一个子进程 使得父进程与子进程能够交替写-To create a parent process, and then write a program to write a child process to parent process and child processes can alternately write
fork
- 它用来模拟父进程与子进程之间的创建与通信机制。-It is used to simulate the parent to create the communication mechanism between processes and sub-processes.
server_yuxian_______
- 实现的是网络预先分配子进程通信的简单的服务器和客户端源码,有server和client两文件。-The realization of the network pre-assigned sub-process communication simple server and client source code, there are two file server and the client.
MUltiProcess
- Linux下多进程的代码实现,修改了system函数,自己实现了一个执行函数,以便获得子进程ID,在父进程结束时把所有子进程也结束掉-Linux code under the multi-process, modify the system function of their execution to achieve a function, in order to obtain the child process ID, the parent process ends when all the
biaozhunhCSfuwuqi
- 标准的互联网C/S结构的网络服务器其实就是利用进程的网络编程的知识来实现并发网络服务器 服务端创建子进程为客户端服务-Standard Internet C/S structure of the network server is actually using the process of network programming knowledge to implement concurrent network server to create a child process server fo
tcp
- 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
udp
- 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
apuepipe
- unix进程间通信,父进程从终端读入通过管道传递给子进程,之后子进程写入文件。 -unix inter-process communication, the parent reads piped the terminal to the child by the child process after writing to the file.
nodejs父子进程的stream方式通信
- 父子进程使用管道通信,对于spawn方式创建的子进程,没有默认管道,所以需要使用此中方式,另外,通过nodejs创建出来的其他进程,比如java,c,都可以使用输入输出流来实现更复杂更安全的通信(The father child process uses pipeline communication, and there is no default pipe for the subprocesses created by the spawn mode, so we need to use thi