mainpipe.c

来自「unix网络编程的源码」· C语言 代码 · 共 30 行

C
30
字号
#include	"unpipc.h"

void	client(int, int), server(int, int);

int
main(int argc, char **argv)
{
	int		pipe1[2], pipe2[2];
	pid_t	childpid;

	Pipe(pipe1);	/* create two pipes */
	Pipe(pipe2);

	if ( (childpid = Fork()) > 0) {		/* parent */
		Close(pipe1[0]);
		Close(pipe2[1]);

		client(pipe2[0], pipe1[1]);

		Waitpid(childpid, NULL, 0);		/* wait for child to terminate */
		exit(0);
	}
		/* 4child */
	Close(pipe1[1]);
	Close(pipe2[0]);

	server(pipe1[0], pipe2[1]);
	exit(0);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?