我正在对来自不同设备的 UPnP 数据包进行研究,我注意到的字段之一是device.zoneType
。
zoneType
包含 1-24 之间的数字。
你们有谁知道每个数字的解释吗?
以下是实际解析的 upnp 数据包的示例,其中该字段以粗体显示:
{
"root": {
"@xmlns": "urn:schemas-upnp-org:device-1-0",
"specVersion": {
"major": "1",
"minor": "0"
},
"device": {
"deviceType": "urn:schemas-upnp-org:device:ZonePlayer:1",
"friendlyName": "Sonos Play:1",
"manufacturer": "Sonos, Inc.",
"manufacturerURL": "http://www.sonos.com",
"modelNumber": "S1",
"modelDescription": "Sonos Play:1",
"modelName": "Sonos Play:1",
"modelURL": "http://www.sonos.com/products/zoneplayers/S1",
"softwareVersion": "54.2-72031",
"swGen": "1",
"hardwareVersion": "1.8.3.7-2",
"serialNum": "",
"MACAddress": "",
"UDN": "uuid:RINCON_5CAAFD78335201400",
"iconList": {
"icon": {
"id": "0",
"mimetype": "image/png",
"width": "48",
"height": "48",
"depth": "24",
"url": "/img/icon-S1.png"
}
},
"minCompatibleVersion": "53.0-00000",
"legacyCompatibleVersion": "36.0-00000",
"apiVersion": "1.16.0",
"minApiVersion": "1.1.0",
"displayVersion": "10.6",
"extraVersion": "OTP:",
"roomName": "Woonkamer",
"displayName": "Play:1",
**"zoneType": "9",**
"feature1": "0x00000000",
"feature2": "0x00403336",
"feature3": "0x0001000e",
"seriesid": "A101",
"variant": "1",
"internalSpeakerSize": "5",
"bassExtension": "75.000",
"satGainOffset": "6.000",
"memory": "128",
"flash": "64",
"flashRepartitioned": "0",
"ampOnTime": "10",
"retailMode": "0",
"serviceList": {
"service": [
{
"serviceType": "urn:schemas-upnp-org:service:AlarmClock:1",
"serviceId": "urn:upnp-org:serviceId:AlarmClock",
"controlURL": "/AlarmClock/Control",
"eventSubURL": "/AlarmClock/Event",
"SCPDURL": "/xml/AlarmClock1.xml"
},
{
"serviceType": "urn:schemas-upnp-org:service:DeviceProperties:1",
"serviceId": "urn:upnp-org:serviceId:DeviceProperties",
"controlURL": "/DeviceProperties/Control",
"eventSubURL": "/DeviceProperties/Event",
"SCPDURL": "/xml/DeviceProperties1.xml"
},
{
"serviceType": "urn:schemas-upnp-org:service:SystemProperties:1",
"serviceId": "urn:upnp-org:serviceId:SystemProperties",
"controlURL": "/SystemProperties/Control",
"eventSubURL": "/SystemProperties/Event",
"SCPDURL": "/xml/SystemProperties1.xml"
},
{
"serviceType": "urn:schemas-upnp-org:service:ZoneGroupTopology:1",
"serviceId": "urn:upnp-org:serviceId:ZoneGroupTopology",
"controlURL": "/ZoneGroupTopology/Control",
"eventSubURL": "/ZoneGroupTopology/Event",
"SCPDURL": "/xml/ZoneGroupTopology1.xml"
},
{
"serviceType": "urn:schemas-upnp-org:service:GroupManagement:1",
"serviceId": "urn:upnp-org:serviceId:GroupManagement",
"controlURL": "/GroupManagement/Control",
"eventSubURL": "/GroupManagement/Event",
"SCPDURL": "/xml/GroupManagement1.xml"
}
]
},
"deviceList": {
"device": {
"deviceType": "urn:schemas-upnp-org:device:MediaRenderer:1",
"friendlyName": " - Sonos Play:1 Media Renderer",
"manufacturer": "Sonos, Inc.",
"manufacturerURL": "http://www.sonos.com",
"modelNumber": "S1",
"modelDescription": "Sonos Play:1 Media Renderer",
"modelName": "Sonos Play:1",
"modelURL": "http://www.sonos.com/products/zoneplayers/S1",
"UDN": "",
"serviceList": {
"service": {
"serviceType": "urn:schemas-upnp-org:service:RenderingControl:1",
"serviceId": "urn:upnp-org:serviceId:RenderingControl",
"controlURL": "/MediaRenderer/RenderingControl/Control",
"eventSubURL": "/MediaRenderer/RenderingControl/Event",
"SCPDURL": "/xml/RenderingControl1.xml"
}
},
"iconList": {
"icon": {
"mimetype": "image/png",
"width": "48",
"height": "48",
"depth": "24",
"url": "/img/icon-S1.png"
}
}
}
}
}
}
}