2 This file is part of PulseAudio.
4 Copyright 2006-2007 Pierre Ossman <ossman@cendio.se> for Cendio AB
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
30 #include <sys/types.h>
32 #include <pulsecore/socket.h>
33 #include <pulsecore/core-util.h>
39 static int set_block(int fd
, int blocking
) {
46 if ((v
= fcntl(fd
, F_GETFL
)) < 0)
54 if (fcntl(fd
, F_SETFL
, v
) < 0)
59 #elif defined(OS_IS_WIN32)
65 if (ioctlsocket(fd
, FIONBIO
, &arg
) < 0)
77 int pipe(int filedes
[2]) {
79 struct sockaddr_in addr
, peer
;
86 listener
= socket(PF_INET
, SOCK_STREAM
, 0);
90 filedes
[0] = socket(PF_INET
, SOCK_STREAM
, 0);
94 filedes
[1] = socket(PF_INET
, SOCK_STREAM
, 0);
98 /* Make non-blocking so that connect() won't block */
99 if (set_block(filedes
[0], 0) < 0)
102 addr
.sin_family
= AF_INET
;
104 addr
.sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
);
106 if (bind(listener
, (struct sockaddr
*)&addr
, sizeof(addr
)) < 0)
109 if (listen(listener
, 1) < 0)
113 if (getsockname(listener
, (struct sockaddr
*)&addr
, &len
) < 0)
116 if (connect(filedes
[0], (struct sockaddr
*)&addr
, sizeof(addr
)) < 0) {
118 if (WSAGetLastError() != EWOULDBLOCK
)
120 if (errno
!= EINPROGRESS
)
126 filedes
[1] = accept(listener
, (struct sockaddr
*)&peer
, &len
);
130 /* Restore blocking */
131 if (set_block(filedes
[0], 1) < 0)
135 if (getsockname(filedes
[0], (struct sockaddr
*)&addr
, &len
) < 0)
138 /* Check that someone else didn't steal the connection */
139 if ((addr
.sin_port
!= peer
.sin_port
) || (addr
.sin_addr
.s_addr
!= peer
.sin_addr
.s_addr
))
150 pa_close(filedes
[0]);
152 pa_close(filedes
[0]);
157 #endif /* HAVE_PIPE */