Added upnp-discover cli tool
This commit is contained in:
@ -93,6 +93,46 @@ class Device
|
||||
return $this->ip;
|
||||
}
|
||||
|
||||
public function getDevices()
|
||||
{
|
||||
return $this->devices;
|
||||
}
|
||||
|
||||
public function getServices()
|
||||
{
|
||||
return $this->services;
|
||||
}
|
||||
|
||||
public function getFriendlyName()
|
||||
{
|
||||
return $this->friendlyName;
|
||||
}
|
||||
|
||||
public function getDeviceType()
|
||||
{
|
||||
return $this->deviceType;
|
||||
}
|
||||
|
||||
public function getManufacturer()
|
||||
{
|
||||
return $this->manufacturer;
|
||||
}
|
||||
|
||||
public function getModelName()
|
||||
{
|
||||
return $this->modelName;
|
||||
}
|
||||
|
||||
public function getModelDescription()
|
||||
{
|
||||
return $this->modelDescription;
|
||||
}
|
||||
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->specUrl;
|
||||
}
|
||||
|
||||
public function __toString()
|
||||
{
|
||||
|
||||
|
Reference in New Issue
Block a user