2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
License, or (at your option) any later version.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2004-11-14 14:58:54 +00:00
|
|
|
Lesser General Public License for more details.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2006-06-19 21:53:48 +00:00
|
|
|
License along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-07-02 18:47:03 +00:00
|
|
|
#include <stdlib.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <unistd.h>
|
2006-02-24 15:12:42 +00:00
|
|
|
#include <errno.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-02-24 16:27:39 +00:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_SYS_UN_H
|
|
|
|
|
#include <sys/un.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-01-10 17:51:06 +00:00
|
|
|
#include "winsock.h"
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core-error.h>
|
|
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
#include <pulsecore/socket-util.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#include "iochannel.h"
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_iochannel {
|
2004-06-08 23:54:24 +00:00
|
|
|
int ifd, ofd;
|
2006-07-14 22:42:01 +00:00
|
|
|
int ifd_type, ofd_type;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_mainloop_api* mainloop;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
pa_iochannel_cb_t callback;
|
2004-06-08 23:54:24 +00:00
|
|
|
void*userdata;
|
|
|
|
|
|
|
|
|
|
int readable;
|
|
|
|
|
int writable;
|
2004-07-09 23:26:10 +00:00
|
|
|
int hungup;
|
2004-07-03 00:19:17 +00:00
|
|
|
|
2004-06-19 19:27:47 +00:00
|
|
|
int no_close;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_io_event* input_event, *output_event;
|
2004-06-08 23:54:24 +00:00
|
|
|
};
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void enable_mainloop_sources(pa_iochannel *io) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(io);
|
|
|
|
|
|
2004-09-27 17:21:27 +00:00
|
|
|
if (io->input_event == io->output_event && io->input_event) {
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_io_event_flags_t f = PA_IO_EVENT_NULL;
|
2004-08-05 19:53:57 +00:00
|
|
|
assert(io->input_event);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-05-20 15:00:16 +00:00
|
|
|
if (!io->readable)
|
2004-08-05 19:53:57 +00:00
|
|
|
f |= PA_IO_EVENT_INPUT;
|
2006-05-20 15:00:16 +00:00
|
|
|
if (!io->writable)
|
2004-08-05 19:53:57 +00:00
|
|
|
f |= PA_IO_EVENT_OUTPUT;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-08-05 19:53:57 +00:00
|
|
|
io->mainloop->io_enable(io->input_event, f);
|
2004-06-08 23:54:24 +00:00
|
|
|
} else {
|
2004-08-05 19:53:57 +00:00
|
|
|
if (io->input_event)
|
2006-05-20 15:00:16 +00:00
|
|
|
io->mainloop->io_enable(io->input_event, io->readable ? PA_IO_EVENT_NULL : PA_IO_EVENT_INPUT);
|
2004-08-05 19:53:57 +00:00
|
|
|
if (io->output_event)
|
2006-05-20 15:00:16 +00:00
|
|
|
io->mainloop->io_enable(io->output_event, io->writable ? PA_IO_EVENT_NULL : PA_IO_EVENT_OUTPUT);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
static void callback(pa_mainloop_api* m, pa_io_event *e, int fd, pa_io_event_flags_t f, void *userdata) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_iochannel *io = userdata;
|
2004-06-14 18:38:50 +00:00
|
|
|
int changed = 0;
|
2006-01-11 01:17:39 +00:00
|
|
|
|
|
|
|
|
assert(m);
|
|
|
|
|
assert(e);
|
|
|
|
|
assert(fd >= 0);
|
|
|
|
|
assert(userdata);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-05-11 21:38:16 +00:00
|
|
|
if ((f & (PA_IO_EVENT_HANGUP|PA_IO_EVENT_ERROR)) && !io->hungup) {
|
2004-07-09 23:26:10 +00:00
|
|
|
io->hungup = 1;
|
|
|
|
|
changed = 1;
|
2006-02-20 04:05:16 +00:00
|
|
|
}
|
2004-09-27 17:21:27 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
if ((f & PA_IO_EVENT_INPUT) && !io->readable) {
|
|
|
|
|
io->readable = 1;
|
|
|
|
|
changed = 1;
|
|
|
|
|
assert(e == io->input_event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((f & PA_IO_EVENT_OUTPUT) && !io->writable) {
|
|
|
|
|
io->writable = 1;
|
|
|
|
|
changed = 1;
|
|
|
|
|
assert(e == io->output_event);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (changed) {
|
|
|
|
|
enable_mainloop_sources(io);
|
|
|
|
|
|
|
|
|
|
if (io->callback)
|
|
|
|
|
io->callback(io, io->userdata);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_iochannel* pa_iochannel_new(pa_mainloop_api*m, int ifd, int ofd) {
|
|
|
|
|
pa_iochannel *io;
|
|
|
|
|
|
|
|
|
|
assert(m);
|
|
|
|
|
assert(ifd >= 0 || ofd >= 0);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
io = pa_xnew(pa_iochannel, 1);
|
2004-06-08 23:54:24 +00:00
|
|
|
io->ifd = ifd;
|
|
|
|
|
io->ofd = ofd;
|
2006-07-14 22:42:01 +00:00
|
|
|
io->ifd_type = io->ofd_type = 0;
|
2004-06-08 23:54:24 +00:00
|
|
|
io->mainloop = m;
|
|
|
|
|
|
|
|
|
|
io->userdata = NULL;
|
|
|
|
|
io->callback = NULL;
|
|
|
|
|
io->readable = 0;
|
|
|
|
|
io->writable = 0;
|
2004-07-09 23:26:10 +00:00
|
|
|
io->hungup = 0;
|
2004-06-19 19:27:47 +00:00
|
|
|
io->no_close = 0;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-08-05 19:53:57 +00:00
|
|
|
io->input_event = io->output_event = NULL;
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
if (ifd == ofd) {
|
|
|
|
|
assert(ifd >= 0);
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_make_nonblock_fd(io->ifd);
|
2004-08-05 19:53:57 +00:00
|
|
|
io->input_event = io->output_event = m->io_new(m, ifd, PA_IO_EVENT_INPUT|PA_IO_EVENT_OUTPUT, callback, io);
|
2004-06-08 23:54:24 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
if (ifd >= 0) {
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_make_nonblock_fd(io->ifd);
|
2004-08-05 19:53:57 +00:00
|
|
|
io->input_event = m->io_new(m, ifd, PA_IO_EVENT_INPUT, callback, io);
|
|
|
|
|
}
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
if (ofd >= 0) {
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_make_nonblock_fd(io->ofd);
|
2004-08-05 19:53:57 +00:00
|
|
|
io->output_event = m->io_new(m, ofd, PA_IO_EVENT_OUTPUT, callback, io);
|
|
|
|
|
}
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return io;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_iochannel_free(pa_iochannel*io) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(io);
|
|
|
|
|
|
2004-08-05 19:53:57 +00:00
|
|
|
if (io->input_event)
|
|
|
|
|
io->mainloop->io_free(io->input_event);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-08-05 19:53:57 +00:00
|
|
|
if (io->output_event && (io->output_event != io->input_event))
|
|
|
|
|
io->mainloop->io_free(io->output_event);
|
|
|
|
|
|
2004-06-19 19:27:47 +00:00
|
|
|
if (!io->no_close) {
|
|
|
|
|
if (io->ifd >= 0)
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-06-19 19:27:47 +00:00
|
|
|
close(io->ifd);
|
|
|
|
|
if (io->ofd >= 0 && io->ofd != io->ifd)
|
|
|
|
|
close(io->ofd);
|
|
|
|
|
}
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(io);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_iochannel_is_readable(pa_iochannel*io) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(io);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-09-27 17:21:27 +00:00
|
|
|
return io->readable || io->hungup;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_iochannel_is_writable(pa_iochannel*io) {
|
2004-06-08 23:54:24 +00:00
|
|
|
assert(io);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-09-27 17:21:27 +00:00
|
|
|
return io->writable && !io->hungup;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_iochannel_is_hungup(pa_iochannel*io) {
|
2004-07-09 23:26:10 +00:00
|
|
|
assert(io);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
return io->hungup;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
ssize_t pa_iochannel_write(pa_iochannel*io, const void*data, size_t l) {
|
2004-06-08 23:54:24 +00:00
|
|
|
ssize_t r;
|
2006-01-11 01:17:39 +00:00
|
|
|
|
|
|
|
|
assert(io);
|
|
|
|
|
assert(data);
|
|
|
|
|
assert(l);
|
|
|
|
|
assert(io->ofd >= 0);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-07-14 22:42:01 +00:00
|
|
|
r = pa_write(io->ofd, data, l, &io->ofd_type);
|
2006-01-10 17:51:06 +00:00
|
|
|
if (r >= 0) {
|
2004-06-08 23:54:24 +00:00
|
|
|
io->writable = 0;
|
|
|
|
|
enable_mainloop_sources(io);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
ssize_t pa_iochannel_read(pa_iochannel*io, void*data, size_t l) {
|
2004-06-08 23:54:24 +00:00
|
|
|
ssize_t r;
|
2006-01-11 01:17:39 +00:00
|
|
|
|
|
|
|
|
assert(io);
|
|
|
|
|
assert(data);
|
|
|
|
|
assert(io->ifd >= 0);
|
2006-01-10 17:51:06 +00:00
|
|
|
|
2006-07-14 22:42:01 +00:00
|
|
|
r = pa_read(io->ifd, data, l, &io->ifd_type);
|
2006-01-10 17:51:06 +00:00
|
|
|
if (r >= 0) {
|
2004-06-08 23:54:24 +00:00
|
|
|
io->readable = 0;
|
|
|
|
|
enable_mainloop_sources(io);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|
2004-06-11 21:30:16 +00:00
|
|
|
|
2006-02-24 15:12:42 +00:00
|
|
|
#ifdef SCM_CREDENTIALS
|
|
|
|
|
|
|
|
|
|
int pa_iochannel_creds_supported(pa_iochannel *io) {
|
|
|
|
|
struct sockaddr_un sa;
|
|
|
|
|
socklen_t l;
|
|
|
|
|
|
|
|
|
|
assert(io);
|
|
|
|
|
assert(io->ifd >= 0);
|
|
|
|
|
assert(io->ofd == io->ifd);
|
|
|
|
|
|
|
|
|
|
l = sizeof(sa);
|
|
|
|
|
|
|
|
|
|
if (getsockname(io->ifd, (struct sockaddr*) &sa, &l) < 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return sa.sun_family == AF_UNIX;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pa_iochannel_creds_enable(pa_iochannel *io) {
|
|
|
|
|
int t = 1;
|
|
|
|
|
|
|
|
|
|
assert(io);
|
|
|
|
|
assert(io->ifd >= 0);
|
|
|
|
|
|
|
|
|
|
if (setsockopt(io->ifd, SOL_SOCKET, SO_PASSCRED, &t, sizeof(t)) < 0) {
|
2006-05-22 15:20:46 +00:00
|
|
|
pa_log_error("setsockopt(SOL_SOCKET, SO_PASSCRED): %s", pa_cstrerror(errno));
|
2006-02-24 15:12:42 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t pa_iochannel_write_with_creds(pa_iochannel*io, const void*data, size_t l) {
|
|
|
|
|
ssize_t r;
|
|
|
|
|
struct msghdr mh;
|
|
|
|
|
struct iovec iov;
|
|
|
|
|
uint8_t cmsg_data[CMSG_SPACE(sizeof(struct ucred))];
|
|
|
|
|
struct ucred *ucred;
|
|
|
|
|
struct cmsghdr *cmsg;
|
|
|
|
|
|
|
|
|
|
assert(io);
|
|
|
|
|
assert(data);
|
|
|
|
|
assert(l);
|
|
|
|
|
assert(io->ofd >= 0);
|
|
|
|
|
|
|
|
|
|
memset(&iov, 0, sizeof(iov));
|
|
|
|
|
iov.iov_base = (void*) data;
|
|
|
|
|
iov.iov_len = l;
|
|
|
|
|
|
|
|
|
|
memset(cmsg_data, 0, sizeof(cmsg_data));
|
|
|
|
|
cmsg = (struct cmsghdr*) cmsg_data;
|
|
|
|
|
cmsg->cmsg_len = CMSG_LEN(sizeof(struct ucred));
|
|
|
|
|
cmsg->cmsg_level = SOL_SOCKET;
|
|
|
|
|
cmsg->cmsg_type = SCM_CREDENTIALS;
|
|
|
|
|
|
|
|
|
|
ucred = (struct ucred*) CMSG_DATA(cmsg);
|
|
|
|
|
ucred->pid = getpid();
|
|
|
|
|
ucred->uid = getuid();
|
|
|
|
|
ucred->gid = getgid();
|
|
|
|
|
|
|
|
|
|
memset(&mh, 0, sizeof(mh));
|
|
|
|
|
mh.msg_name = NULL;
|
|
|
|
|
mh.msg_namelen = 0;
|
|
|
|
|
mh.msg_iov = &iov;
|
|
|
|
|
mh.msg_iovlen = 1;
|
|
|
|
|
mh.msg_control = cmsg_data;
|
|
|
|
|
mh.msg_controllen = sizeof(cmsg_data);
|
|
|
|
|
mh.msg_flags = 0;
|
|
|
|
|
|
|
|
|
|
if ((r = sendmsg(io->ofd, &mh, MSG_NOSIGNAL)) >= 0) {
|
|
|
|
|
io->writable = 0;
|
|
|
|
|
enable_mainloop_sources(io);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t pa_iochannel_read_with_creds(pa_iochannel*io, void*data, size_t l, struct ucred *ucred, int *creds_valid) {
|
|
|
|
|
ssize_t r;
|
|
|
|
|
struct msghdr mh;
|
|
|
|
|
struct iovec iov;
|
|
|
|
|
uint8_t cmsg_data[CMSG_SPACE(sizeof(struct ucred))];
|
|
|
|
|
|
|
|
|
|
assert(io);
|
|
|
|
|
assert(data);
|
|
|
|
|
assert(l);
|
|
|
|
|
assert(io->ifd >= 0);
|
|
|
|
|
assert(ucred);
|
|
|
|
|
assert(creds_valid);
|
|
|
|
|
|
|
|
|
|
memset(&iov, 0, sizeof(iov));
|
|
|
|
|
iov.iov_base = data;
|
|
|
|
|
iov.iov_len = l;
|
|
|
|
|
|
|
|
|
|
memset(cmsg_data, 0, sizeof(cmsg_data));
|
|
|
|
|
|
|
|
|
|
memset(&mh, 0, sizeof(mh));
|
|
|
|
|
mh.msg_name = NULL;
|
|
|
|
|
mh.msg_namelen = 0;
|
|
|
|
|
mh.msg_iov = &iov;
|
|
|
|
|
mh.msg_iovlen = 1;
|
|
|
|
|
mh.msg_control = cmsg_data;
|
|
|
|
|
mh.msg_controllen = sizeof(cmsg_data);
|
|
|
|
|
mh.msg_flags = 0;
|
|
|
|
|
|
2006-07-14 23:00:20 +00:00
|
|
|
if ((r = recvmsg(io->ifd, &mh, 0)) >= 0) {
|
2006-02-24 15:12:42 +00:00
|
|
|
struct cmsghdr *cmsg;
|
|
|
|
|
|
|
|
|
|
*creds_valid = 0;
|
|
|
|
|
|
|
|
|
|
for (cmsg = CMSG_FIRSTHDR(&mh); cmsg; cmsg = CMSG_NXTHDR(&mh, cmsg)) {
|
|
|
|
|
|
|
|
|
|
if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_CREDENTIALS) {
|
|
|
|
|
assert(cmsg->cmsg_len == CMSG_LEN(sizeof(struct ucred)));
|
|
|
|
|
memcpy(ucred, CMSG_DATA(cmsg), sizeof(struct ucred));
|
|
|
|
|
*creds_valid = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
io->readable = 0;
|
|
|
|
|
enable_mainloop_sources(io);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|
2006-02-24 16:27:39 +00:00
|
|
|
#else /* SCM_CREDENTIALS */
|
|
|
|
|
|
|
|
|
|
int pa_iochannel_creds_supported(pa_iochannel *io) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pa_iochannel_creds_enable(pa_iochannel *io) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t pa_iochannel_write_with_creds(pa_iochannel*io, const void*data, size_t l) {
|
|
|
|
|
pa_log_error("pa_iochannel_write_with_creds() not supported.");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssize_t pa_iochannel_read_with_creds(pa_iochannel*io, void*data, size_t l, struct ucred *ucred, int *creds_valid) {
|
|
|
|
|
pa_log_error("pa_iochannel_read_with_creds() not supported.");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* SCM_CREDENTIALS */
|
2006-02-24 15:12:42 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
void pa_iochannel_set_callback(pa_iochannel*io, pa_iochannel_cb_t _callback, void *userdata) {
|
2004-06-11 21:30:16 +00:00
|
|
|
assert(io);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
|
|
|
|
io->callback = _callback;
|
2004-06-11 21:30:16 +00:00
|
|
|
io->userdata = userdata;
|
|
|
|
|
}
|
2004-06-19 19:27:47 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_iochannel_set_noclose(pa_iochannel*io, int b) {
|
2004-06-19 19:27:47 +00:00
|
|
|
assert(io);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-06-19 19:27:47 +00:00
|
|
|
io->no_close = b;
|
|
|
|
|
}
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_iochannel_socket_peer_to_string(pa_iochannel*io, char*s, size_t l) {
|
|
|
|
|
assert(io);
|
|
|
|
|
assert(s);
|
|
|
|
|
assert(l);
|
|
|
|
|
|
2004-07-11 01:09:46 +00:00
|
|
|
pa_socket_peer_to_string(io->ifd, s, l);
|
2004-06-23 23:17:30 +00:00
|
|
|
}
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_iochannel_socket_set_rcvbuf(pa_iochannel *io, size_t l) {
|
2004-07-09 23:26:10 +00:00
|
|
|
assert(io);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
return pa_socket_set_rcvbuf(io->ifd, l);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_iochannel_socket_set_sndbuf(pa_iochannel *io, size_t l) {
|
2004-07-09 23:26:10 +00:00
|
|
|
assert(io);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
return pa_socket_set_sndbuf(io->ofd, l);
|
|
|
|
|
}
|
2004-09-16 00:05:56 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_mainloop_api* pa_iochannel_get_mainloop_api(pa_iochannel *io) {
|
2004-11-18 20:50:44 +00:00
|
|
|
assert(io);
|
2006-01-11 01:17:39 +00:00
|
|
|
|
2004-11-18 20:50:44 +00:00
|
|
|
return io->mainloop;
|
|
|
|
|
}
|