diff options
Diffstat (limited to 'src/modules/module-tunnel.c')
| -rw-r--r-- | src/modules/module-tunnel.c | 54 | 
1 files changed, 54 insertions, 0 deletions
| diff --git a/src/modules/module-tunnel.c b/src/modules/module-tunnel.c index af4b8b2a..c97de3a1 100644 --- a/src/modules/module-tunnel.c +++ b/src/modules/module-tunnel.c @@ -1069,6 +1069,33 @@ static void sink_info_cb(pa_pdispatch *pd, uint32_t command,  uint32_t tag, pa_t          }      } +    if (u->version >= 16) { +        uint32_t n_ports; +        const char *s; + +        if (pa_tagstruct_getu32(t, &n_ports)) { +            pa_log("Parse failure"); +            goto fail; +        } + +        for (uint32_t j = 0; j < n_ports; j++) { +            uint32_t priority; + +            if (pa_tagstruct_gets(t, &s) < 0 || /* name */ +                pa_tagstruct_gets(t, &s) < 0 || /* description */ +                pa_tagstruct_getu32(t, &priority) < 0) { + +                pa_log("Parse failure"); +                goto fail; +            } +        } + +        if (pa_tagstruct_gets(t, &s) < 0) { /* active port */ +            pa_log("Parse failure"); +            goto fail; +        } +    } +      if (!pa_tagstruct_eof(t)) {          pa_log("Packet too long");          goto fail; @@ -1245,6 +1272,33 @@ static void source_info_cb(pa_pdispatch *pd, uint32_t command,  uint32_t tag, pa          }      } +    if (u->version >= 16) { +        uint32_t n_ports; +        const char *s; + +        if (pa_tagstruct_getu32(t, &n_ports)) { +            pa_log("Parse failure"); +            goto fail; +        } + +        for (uint32_t j = 0; j < n_ports; j++) { +            uint32_t priority; + +            if (pa_tagstruct_gets(t, &s) < 0 || /* name */ +                pa_tagstruct_gets(t, &s) < 0 || /* description */ +                pa_tagstruct_getu32(t, &priority) < 0) { + +                pa_log("Parse failure"); +                goto fail; +            } +        } + +        if (pa_tagstruct_gets(t, &s) < 0) { /* active port */ +            pa_log("Parse failure"); +            goto fail; +        } +    } +      if (!pa_tagstruct_eof(t)) {          pa_log("Packet too long");          goto fail; | 
