summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/iochannel.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-07-20 18:43:20 +0000
committerLennart Poettering <lennart@poettering.net>2006-07-20 18:43:20 +0000
commit44beeaa648a1d434692721dd65a04ecb3f75dace (patch)
treeddc55d578d400a0a792c849af37e7221c7b2381f /src/pulsecore/iochannel.c
parentdb75f68854b03a4fb8884616d085f48b9fc4d001 (diff)
implement "auth-ip-acl=" in the native and esound protocols
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1125 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/iochannel.c')
-rw-r--r--src/pulsecore/iochannel.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pulsecore/iochannel.c b/src/pulsecore/iochannel.c
index b50293bf..af732c26 100644
--- a/src/pulsecore/iochannel.c
+++ b/src/pulsecore/iochannel.c
@@ -408,3 +408,9 @@ pa_mainloop_api* pa_iochannel_get_mainloop_api(pa_iochannel *io) {
return io->mainloop;
}
+
+int pa_iochannel_get_recv_fd(pa_iochannel *io) {
+ assert(io);
+
+ return io->ifd;
+}