diff options
author | Colin Guthrie <cguthrie@mandriva.org> | 2011-03-20 14:09:14 +0000 |
---|---|---|
committer | Colin Guthrie <cguthrie@mandriva.org> | 2011-03-20 14:10:16 +0000 |
commit | 36e7f8a92e8b340dd4034a39a655ba93bcd41886 (patch) | |
tree | 641b4b18afbacb1bcace356a9f6666f3aaec3c88 /src/modules/module-tunnel.c | |
parent | b676f89d8579c7ec1629892342a330f1e4c35657 (diff) |
tunnel: Fix tunnel streams with recent servers
Prompted by bug #750. Thanks to Emil Renner Berthing for the original
patch.
Diffstat (limited to 'src/modules/module-tunnel.c')
-rw-r--r-- | src/modules/module-tunnel.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/modules/module-tunnel.c b/src/modules/module-tunnel.c index af1bb955..65fb67dc 100644 --- a/src/modules/module-tunnel.c +++ b/src/modules/module-tunnel.c @@ -1685,6 +1685,14 @@ static void setup_complete_callback(pa_pdispatch *pd, uint32_t command, uint32_t pa_tagstruct_put_boolean(reply, FALSE); /* fail on suspend */ } +#ifdef TUNNEL_SINK + if (u->version >= 17) + pa_tagstruct_put_boolean(reply, FALSE); /* relative volume */ + + if (u->version >= 18) { + pa_tagstruct_put_boolean(reply, FALSE); /* passthough stream */ +#endif + pa_pstream_send_tagstruct(u->pstream, reply); pa_pdispatch_register_reply(u->pdispatch, tag, DEFAULT_TIMEOUT, create_stream_callback, u, NULL); |