From e2a5786af8c8278eeeb0bedccda32c7422e9a2b7 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Sat, 13 Sep 2008 20:13:08 -0700 Subject: store pnp info when we receive a pnp record --- src/device.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/device.c') diff --git a/src/device.c b/src/device.c index a1d1575e..eadc9d51 100644 --- a/src/device.c +++ b/src/device.c @@ -830,6 +830,24 @@ static void update_services(struct browse_req *req, sdp_list_t *recs) if (!uuid_str) continue; + if (!strcasecmp(uuid_str, PNP_UUID)) { + uint16_t vendor, product, version; + sdp_data_t *pdlist; + + pdlist = sdp_data_get(rec, SDP_ATTR_VENDOR_ID); + vendor = pdlist ? pdlist->val.uint16 : 0x0000; + + pdlist = sdp_data_get(rec, SDP_ATTR_PRODUCT_ID); + product = pdlist ? pdlist->val.uint16 : 0x0000; + + pdlist = sdp_data_get(rec, SDP_ATTR_VERSION); + version = pdlist ? pdlist->val.uint16 : 0x0000; + + if (vendor || product || version) + store_pnp(srcaddr, dstaddr, vendor, product, + version); + } + /* Driver uuid found */ l = g_slist_find_custom(req->uuids, uuid_str, (GCompareFunc) strcasecmp); -- cgit