socketpair的用途以及实现_windmoon socketpair pipe

socketpair的用途以及实现一.概念及用途
一个问题:如何创建全双工管道?
直接的办法当然是pipe两次,创建两组管道,但是有没有更简单的呢?
socketpair就可以了,man socketpair:
socketpair - create a pair of connected sockets, The two socketsareindistinguishable,也就是说,用socketpair创建出来的两个描述符应该是等价的。二.用法
#define DATA1 "test string1"
#define DATA2 "test string 2"
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <errno.h>main()
{
int sockets[2], child;
char buf[1024];
/* Get the socket pair */
if (socketpair(AF_UNIX, SOCK_STREAM,
0, sockets) < 0) {
printf("error %d on socketpair ", errno);
exit(1);
}
/* create child process */
if ((child = fork()) == -1) {
printf("forkerror %d ", errno);
exit(1);
}
if (child != 0) { /* this is the parent */
/* closechild's end of socket */
close(sockets[0]);
/* readmessage from child */
if(read(sockets[1], buf, sizeof(buf)) < 0) {
printf("error %d reading socket ", errno);
exit(1);
}
printf("parent:-->%s n", buf);
/* writemessage to child */
if(write(sockets[1], DATA1, sizeof(DATA1)) < 0) {
printf("error %d writing socket ", errno);
exit(1);
}
/* finished*/
close(sockets[1]);
} else { /* the child */
/* closeparent's end of socket */
close(sockets[1]);
/* sendmessage to parent */
if(write(sockets[0], DATA2, sizeof(DATA1)) < 0) {
printf("error %d writ ing socket ", errno);
socketpair的用途以及实现_windmoon socketpair pipe
exit(1);
}
/* getmessage from parent */
if(read(sockets[0], buf, sizeof(buf)) < 0) {
printf("error %d reading socket ", errno);
exit(1);
}
printf("child: -->%sn ", buf);
/* finished*/
close(sockets[0]);
}
}
从上面的代码中,我们可以发现,父进程从sockets[1]中读写,子进程从sockets[0]中读写,的确是全双工形态。
唯一值得考虑的是为什么在父子进程中,要分别关闭sockets[0]和sockets[1]呢?三。一个实现
#include<sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <fcntl.h>
#include <stdio.h>socketpair(af, type, protocol, fd)
intaf;
inttype;
intprotocol;
intfd[2];
{
intlisten_socket;
struct sockaddr_in sin[2];
intlen;/* The following is only valid if type ==SOCK_STREAM */
if (type != SOCK_STREAM)
return -1;/* Create a temporary listen socket;temporary, so any port is good */
listen_socket = socket(af, type, protocol);
if (listen_socket < 0)
{
perror("creatinglisten_socket");
return -1;
}
sin[0].sin_family = af;
sin[0].sin_port = 0; /* Use any port number*/
sin[0].sin_addr.s_addr =inet_makeaddr(INADDR_ANY, 0);
if (bind(listen_socket, &sin[0],sizeof(sin[0])) < 0)
{
perror("bind");
return -1;
}
len = sizeof(sin[0]);/* Read the port number we got, so that ourclient can connect to it */
if (getsockname(listen_socket, &sin[0],&len) < 0)
{
perror("getsockname");
return -1;
}/* Put the listen socket in listening mode*/
if (listen(listen_socket, 5) < 0)
{
perror("listen");
return -1;
}/* Create the client socket */
fd[1] = socket(af, type, protocol);
if (fd[1] < 0)
{
perror("creatingclient_socket");
return -1;
}/* Put the client socket in non-blockingconnecting mode */
fcntl(fd[1], F_SETFL, fcntl(fd[1], F_GETFL, 0) |O_NDELAY);
if (connect(fd[1], &sin[0], sizeof(sin[0]))< 0)
{
perror("connect");
return -1;
}/* At the listen-side, accept the incomingconnection we generated */
len = sizeof(sin[1]);
if ((fd[0] = accept(listen_socket, &sin[1],&len)) < 0)
{
perror("accept");
return -1;
}/* Reset the client socket to blocking mode*/
fcntl(fd[1], F_SETFL, fcntl(fd[1], F_GETFL, 0)& ~O_NDELAY);close(listen_socket);return 0;
}

采用的是unix domainsocket的技术,首先创建一个监听socket,因为是临时性的,其绑定的端口和Ip地址都可以任意(由系统指定即可),然后执行listen;接着创建clientsocket,其描述符为fd[1],执行connect;最后返回服务端,执行accept,返回的描述符就是实际通信的描述符fd[0]。四.补充
socketpair还常用于描述符传递的处理中。

  

爱华网本文地址 » http://www.aihuau.com/a/25101016/314381.html

更多阅读

智能手机速度变慢的原因以及解决办法 下载速度慢的解决办法

智能手机速度变慢的原因以及解决办法——简介人手一机智能手机,不管是高端的还是低端的,但是在买来以后用着用着,我们就发现自己的手机越来越不智能,速度也是变得越来越慢,这是什么原因呢?如何解决这个问题呢?智能手机速度变慢的原因以及

小米4的配置以及上市时间 小米4s和小米5哪个好

小米4的配置以及上市时间——简介在这里来说小米4,可能时间也不是显得那么仓促了。毕竟小米3已经推出,而小米3s估计也就是会在5月份左右的时间上市。小米3s的配置应该是和小米3没有多大的区别了。除了对于细节的优化之外,以及对于4G网

如何建立点对点连接以及实现网络共享 点对点连接

如何建立点对点连接以及实现网络共享——简介点对点,顾名思义,即为在无足够网线、路由器或交换机的情况下,通过一台笔记本电脑建立无线网络,与多台笔记本电脑实现资源交换与局域网络共享的目的,在win7系统(xp系统应该也可)的支持下,点对点连

旧衣服的用途 破旧衣服用途

旧衣服的用途——简介 旧衣服的用途,每家每户相信都有不少旧衣服,有的是小孩子长大了穿不了的,也有穿的时间长了的,放着还占地方,丢了可惜,那么这些旧衣服有什么用呢,下面小编就来给大家举几种旧衣服的用途。旧衣服的用途——工具/原料旧

声明:《socketpair的用途以及实现_windmoon socketpair pipe》为网友沙漠吟颂分享!如侵犯到您的合法权益请联系我们删除