码迷,mamicode.com
首页 > 系统相关 > 详细

匿名本地网络实现进程间通信

时间:2014-12-30 18:33:44      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:

#include "stdio.h"
#include "sys/socket.h"
#include "unistd.h"
 
int main()
{
    int s[2];
    socketpair(AF_LOCAL, SOCK_STREAM, 0, s);
    int n;
    char buf[100];
    if (fork()==0)
    {
        while ((n=read(s[0], buf, sizeof(buf)))>0)
        {
            int i;
            --n;
            for (i=0; i
            {
                char c = buf[i];
                buf[i] = buf[n-1-i];
                buf[n-1-i] = c;
            }
            write(s[0], buf, n+1);
        }
    }
    else
    {
        for(;;)
        {
            n = read(STDIN_FILENO, buf, sizeof(buf));
            if (buf[0] == ‘q‘)
            {
                break;
            }
            write(s[1], buf, n);
            n=read(s[1], buf, sizeof(buf));
            write(STDOUT_FILENO, buf, n);
        }
        close(s[1]);
    }
    return 0;
}

匿名本地网络实现进程间通信

标签:

原文地址:http://www.cnblogs.com/zhangwuliang/p/4193933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!