Sdfr - Service Discovery for Robots

Total Page:16

File Type:pdf, Size:1020Kb

Sdfr - Service Discovery for Robots SDfR - Service Discovery for Robots Stefan-Gabriel Chitic1, Julien Ponge2 and Olivier Simonin1 1Universite´ de Lyon, INSA-Lyon, INRIA, CITI, F-69621, Villeurbanne, France 2Universite´ de Lyon, INSA-Lyon, CITI, F-69621, Villeurbanne, France Keywords: Robotic Fleet, Service Discovery, Service Oriented Architecture. Abstract: Multi-robots systems require dedicated tools and models for their design and the deployment. Our approach proposes service-oriented architecture that can simplify the development and deployment. In order to solve the problem of neighbors and service discovery in an ad-hoc network, the fleet robot needs a protocol that is able to constantly discover new robots in its coverage area. To this end we propose a robotic middleware, SDfR, that is able to provide service discovery. This protocol is an extension of the Simple Service Discovery Protocol (SSDP) used in Universal Plug and Play (UPnP) to dynamic networks generated by the mobility of the robots. Even if SDfR is platform independent, we propose a ROS (ROS, 2014) integration in order to facilitate the usage. We evaluate a series of overhead benchmarking across static and dynamic scenarios. We also present some use-cases where our proposal was successfully tested. 1 INTRODUCTION cover reachable neighbors and their services. We also provide a ROS integration node, simplifying the us- Nowadays more and more robotic systems tend to be age of SDfR. composed of several robots moving and cooperating, The paper is structured as follows: Section 2 generally called fleets of robots. They are able to per- presents the background of service orientated archi- form one or multiple tasks together and to share in- tecture and discovery in multi-robot systems, Sec- formation about complex missions. tion 3 discusses the service discovery approaches in One of the problems in developing multi-robot ap- middleware for robotics, Section 4 presents our pro- plications is the communication inside the fleet. The posal for service discovery in a fleet context, Section robots need to know the reachable peers in any type 5 presents the arhitecture and the implementation of of communication infrastructure. In an ad-hoc net- SDfR, Section 6 presents the main results of over- work, this problem becomes challenging because the head benchmarking and Section 7 describes a couple robots are highly mobile. A fleet can easily partition of use-cases. Section 8 concludes the paper. or merge with another fleet. Also single robots can become isolated or join an existing fleet. There is a great need of having a suitable middle- 2 MOTIVATION ware that can abstract the neighbor and service dis- covery layer and offer high-level application inter- One problem of robotic fleets is how functionalities faces (APIs) to robotic applications. The challenge can be applied to make the collaboration between is to provide an adapted system that can offer a suit- peers easier. Robots in fleet system that perform able mechanism for network configuration. Second, a mission together need to communicate with other this mechanism needs to maintain a list of connected peers. The communication can be done using a cen- peers and their services in a highly mobile scenario. tralized node or directly using an ad-hoc network. In this paper we propose a new service discov- ery middleware, called SDfR (Service Discovery for Robots), an extension of the Simple Service Discov- Robotic Applications as Services. In our vision, ery Protocol (SSDP) used in Universal Plug and Play robots need to advertise their functionalities as ser- (UPnP). SDfR is able to make an auto-configuration vices in order to allow other members of the fleet to for the connectivity to the fleet ad-hoc network, dis- interact with them. In network based applications, 236 Chitic, S-G., Ponge, J. and Simonin, O. SDfR - Service Discovery for Robots. DOI: 10.5220/0005755202360243 In Proceedings of the 8th International Conference on Agents and Artificial Intelligence (ICAART 2016) - Volume 1, pages 236-243 ISBN: 978-989-758-172-4 Copyright c 2016 by SCITEPRESS – Science and Technology Publications, Lda. All rights reserved SDfR - Service Discovery for Robots service-oriented programming is now a largely ac- designed for mono-robot with little applicability in cepted principle (Issarny et al., 2011). multi-robot systems. Service-oriented architecture greatly simplifies One of the first middleware that emerged for the implementation of highly-adaptive, constantly- robotics is Player/Stage (Kranz et al., 2006) project evolving applications (Frenot´ et al., 2010). It also re- which is designed to provide an infrastructure, drivers duces the process of developing and deploying new and a collection of dynamically loaded device-shared robotic applications. This architecture is very suit- libraries for robotic applications. It neither offers a able to quickly cope with new developing models and service orientated architecture, nor a discovery for requirements. neighbors services system. In order to increase the mobility of the robots and Another highly used middleware for robotics is to distribute the communication without having a cen- ROS (Robot operating system). It is a recent flexi- tral node, there is a need for the communication to be ble middleware for robot applications (Quigley et al., decentralized using ad-hoc networks. In this case, the 2009; Cousins et al., 2010; ROS, 2014). It is a col- robots do not have any image of their neighbors. Fur- lection of tools, libraries, and conventions that aim to thermore, the communication across peers is suscep- simplify the task of creating complex and robust robot tible to route change and different peers can be used behavior across a wide variety of robotic platforms. It to relay a data package. The ad-hoc network becomes provides hardware abstraction, device drivers, visual- the sum of peer to peer network with 2 robots at least. izers, message-passing, package management. ROS (ROS, 2014) seems to be the emerging mid- dleware for mono-robot with the most potential to Fleet Service Discovery. In order to solve the prob- become the most used framework for robotic fleets. lem of neighbors and service discovery in an ad-hoc However, it has no multi-robot coordination system network, a fleet robot needs a protocol that is able to and no automated testing environment, but it has al- constantly discover new robots in its coverage area, ready the advantage of having a large community that while maintaining a neighbor connectivity quality in- develops new packages for it. dicator. Since there is not any central node that can manage IP address allocation, the protocol should be To the best of our knowledge, none of the existing able to negotiate an IP address inside the network middleware for robots provides a service discovery and to have a conflict management tool in case of mechanism. ROS internal repository is represented an IP collision. Our work focuses on ad-hoc multi- as an internal node designed for internal service dis- robot systems communication, especially on a family covery, but it does not support neighbors discovery. of middleware that accelerates the development and the deployment of new robotic applications. 3.2 Service Discovery and Robotics Classical protocols and middlewares for service dis- covery in distributed environments like data-grids, 3 RELATED WORK clouds or even smart environments have a central- ized or decentralized registry that manages service In this section we present some of the major middle- description. Decentralized systems (e.g UPnP (Ahn wares in robotics as well as some of existing service et al., 2005), Jini (Pereira et al., 2011) or SLP discovery protocols used in the field. (Romero et al., 2010)) can be a purely distributed so- lution where each node stores its own service repos- 3.1 Middleware for Robotics itories or a hybrid solution that includes super-nodes that aggregate information from other peers. All aspects of communication, application deploy- Another way to see a fleet of robots is like a ment and configuration can be facilitated using a service-oriented multi-agent system. Such environ- proper middleware. The biggest difference between ments like Peer-to-Peer (P2P), Multi-Agent Systems a classical middleware that runs in a cloud central- (MAS) or Service-Oriented Environments (SOE) tend ized infrastructure and a robotic one, is the mobility to approach the problem of service discovery in a cen- of the fleet and the decentralization of its components. tralized, distributed or decentralized way. Central- An exhaustive survey of the existing middlewares for ized mechanisms like super-peers (Gummadi et al., robot contexts is clearly impossible because of the 2002), middle-agents (Klusch et al., 2006) or cen- large number of existing middleware and frequent re- tral registries (Rompothong and Senivongse, 2003) leases of new ones. A detailed survey can be found are limited in number of agents in the system and in (Chitic et al., 2014). Most of the middlewares are in terms of the number of requests. They also use 237 ICAART 2016 - 8th International Conference on Agents and Artificial Intelligence a centralized node which can have serious impact if tive is to propose a network configuration negotiation the central point becomes unreachable. Distributed protocol. Due to the mobility of robots, classical peer approaches such as Distributed Hash Tables (DHT) to peer network configuration techniques are not suit- (Maymounkov and Mazieres, 2002) offer more scal- able. ability and robustness by having multiple specific In this section we present the general description nodes that can manage the resources. Decentralized of our service discovery protocol for robotic applica- systems consider all the nodes to be equal. This ap- tions, called SDfR (Service Discovery for Robots). proach provides more flexibility, but it has its down- sides, since each node has only a partial view of the 4.1 SDfR vs SSDP entire system.
Recommended publications
  • WIRELESS BLUETOOTH 2.0 USB Adapter
    ENABLE BLUETOOTH® CONNECTIVITY ON YOUR COMPUTER Wireless Bluetooth 2.0 USB ADapter BLUETOOTH CONNECTIVITY NETWORK PROTECTION WIRELESS INTEGRATION Sync data between your Bluetooth Protect your personal information with Experience the convenience of PDA, mobile phone, and PC 128-bit encryption Bluetooth headphones, cameras, mice, and keyboards BLUETOOTH CONNECTIVITY Experience the world of Bluetooth technology with the D-Link Wireless Bluetooth 2.0 USB Adapter (DBT-120). Sync your PDA and download images from your Bluetooth camera from across the room or transfer music from your PC to your mobile phone from down the hall. Connect headphones, mice, keyboards, and other Bluetooth devices to your computer with the convenience of Bluetooth wireless technology1. COMPACT AND PORTABLE The Wireless Bluetooth 2.0 USB Adapter was designed and engineered with mobile users in mind, making it a perfect solution for use with notebook computers. Ultra-compact and portable, utilize the device on trips, at work, school, coffee shops, or anywhere around the house for an instant, untethered connection. SIMPLE SETUP The DBT-120 is compatible with Windows® XP/2000 and Mac OS® X2 and works with desktop or notebook computers with an available USB 2.0/1.1 port3. To keep your data safe and secure, the DBT-120 utilizes 128-bit encryption and Frequency-Hopping Spread Spectrum (FHSS). The DBT-120 features Plug and Play and Universal Plug and Play (UPnP) for easy installation and detection of compatible devices. The included software enables you to identify and manage Bluetooth devices on your network. SEAMLESS CONNECTION Both notebook and desktop computer users will experience seamless connectivity with the D-Link Wireless Bluetooth 2.0 USB Adapter (DBT-120).
    [Show full text]
  • Universal Plug and Play Device Architecture
    UPnP Device Architecture 1.0 Document Revision Date 15 October 2008 Note: This document consolidates the several separate documents that make up the entirety of UPnP Device Architecture Version 1.0, including the previously separate specifications for AutoIP, SSDP, HTTPU/MU, FXPP, and GENA, and clarifications made in the UPnP Vendor Implementation Guide. It does not introduce any new technical requirements, but constitutes an editorial clarification only. Contributors Allegro Software Development Corporation Conexant Systems, Inc. Intel Corporation Microsoft Corporation Motorola Nokia Corporation Philips Electronics Pioneer Sony Electronics © 2008 Contributing Members of the UPnP™ Forum. All rights reserved. See http://www.upnp.org/info/cpyright.asp for more information. Table of Contents Introduction ........................................................................................ 1 What is UPnP™ Technology? .................................................................... 1 UPnP™ Forum ..................................................................................... 1 In this document ................................................................................. 2 Audience .......................................................................................... 4 Required vs. recommended .................................................................... 4 Acronyms .......................................................................................... 5 References and resources .....................................................................
    [Show full text]
  • Engineered to Enhance Bluetooth Connectivity from Your Jabra Device to Your Computer
    TECH SHEET LINK 380 Engineered to enhance Bluetooth connectivity from your Jabra device to your computer Wireless range up to 30m/100ft Available in Unified Communications & Microsoft Teams variants A2DP Bluetooth 5.0 and HD Voice Easy to manage through Jabra Direct TECHNICAL SPECIFICATIONS General info Box content Jabra Link 380 Bluetooth adapter (UC or MS), Paper bag, Leaflet Packaging dimensions (L x W x H) 92 x 72 x 65mm/3.6 x 2.8 x 2.6 inch Main unit dimension (L x W x H) Type-A: 21.3 x 16.1 x 4.6 mm/6.6 x 5 x 3.7 inch Type-C: 16.8 x 12.7 x 9.5 mm/6.6 x 5 x 3.7 inch Weight USB-C: 4 g/0,141 oz USB-A: 4.3 g/0,151 oz Material used PC/ABS Warranty 2 years from the date the product has been purchased; 1 year in NA Certifications Certified for all Unified Communications-leading platforms (UC version) Certified for Microsoft Teams (MS version) Ease of use Visual indicators Multicolor LEDs indicate pairing, connection and on-call status plus other details Adapter buttons No buttons Connectivity Connection (computer and mobile devices) Bluetooth/USB 2.0 type A or type C plug Softphone support (call control) Refer to www.jabra.com/compatibility for latest information Deskphone (USB) support Not supported Officially supported devices Jabra Evolve2 65 – Jabra Evolve2 85 Wireless Bluetooth standard Bluetooth 5.0 – Bluetooth Low Energy (BTLE) technologies Wireless range Up to 30 m/100 ft (when paired with a Bluetooth wireless technology class 1 device) Up to 10 m/33 ft (when paired with a class 2 device) Simultaneous Bluetooth connections 2 (Up to 8 Jabra devices remembered in the pairing list.
    [Show full text]
  • Wireless Broadband Router
    Wireless Broadband Router MI424WR rev. I User Manual © 2011 Verizon. All Rights Reserved. Contents FiOS Router User Manual 1 Introduction 1.0 Introduction 1.1 Package Contents 1.2 System Requirements 1.3 Features 1.4 Getting to Know the FiOS Router 2 Connecting the FiOS Router 2.0 Introduction 2.1 Setting Up the FiOS Router 2.2 Computer Network Configuration 2.3 Configuring the FiOS Router 2.4 Features 2.5 Main Screen 3 Setting Up a Wireless Network 3.0 Introduction 3.1 Overview 3.2 Connecting a Wireless Client 3.3 Wireless Status 3.4 Basic Security Settings 3.5 Advanced Security Settings 3.6 Setting Up a Wireless Client 4 Configuring My Network Settings 4.0 Introduction 4.1 Accessing My Network Settings 4.2 Using My Network Settings Contents FiOS Router User Manual (con’t) 5 Using Network Connections 5.0 Introduction 5.1 Accessing Network Connections 5.2 Network (Home/Office) Connection 5.3 Ethernet/Coax Connection 5.4 Wireless Access Point Connection 5.5 Broadband Ethernet/Coax Connection 5.6 WAN PPPoE Connection 6 Configuring Security Settings 6.0 Introduction 6.1 Overview 6.2 Firewall 6.3 Access Control 6.4 Port Forwarding 6.5 DMZ Host 6.6 Port Triggering 6.7 Remote Administration 6.8 Static NAT 6.9 Advanced Filtering 6.10 Security Log 7 Parental Controls 7.0 Introduction 7.1 Activating Parental Controls 7.2 Rule Summary Contents FiOS Router User Manual (con’t) 8 Configuring Advanced Settings 8.0 Introduction 8.1 Using Advanced Settings 8.2 Utilities 8.3 DNS Settings 8.4 Network Settings 8.5 Configuration Settings 8.6 Time Settings
    [Show full text]
  • Universal Plug and Play IGD Jonathan Squire, CISSP
    Universal Plug and Play IGD “A Fox in the Hen House” Jonathan Squire, CISSP August 8, 2008 http://www.bigbrainlabs.com/ Copyright © Jonathan Squire. All rights Reserved. 1 Abstract............................................................................................................................... 3 Introduction......................................................................................................................... 3 UPnP and SSDP - A High Level Overview.................................................................... 4 Addressing .................................................................................................................. 4 Locating Devices ........................................................................................................ 4 Device Descriptions.................................................................................................... 5 Accessing Services...................................................................................................... 6 UPnP IGD ....................................................................................................................... 7 Attacking UPnP IGD Enabled Devices .............................................................................. 7 AddPortMapping............................................................................................................. 7 Protocol Abuse................................................................................................................ 8 Forwarding
    [Show full text]
  • Universal Plug and Play: Dead Simple Or Simply Deadly?
    Universal Plug and Play: Dead simple or simply deadly? Armijn Hemel April 7, 2006 1 Universal Plug and Play overview Many devices and programs that exist today have support for the Universal Plug and Play (UPnP) protocol. The UPnP protocol emerged from within Microsoft in early 1999 to bring the plug and play concept as found on Windows desktop machines to the local network. The idea behind UPnP is to enable a user to plug a device into the local network and it will simply work, whether the device is a printer, scanner, fileserver or firewall. All configuration is hidden for the user and instead done automatically by the devices and programs themselves. The first implementations of UPnP were shipped halfway 2000, Windows ME and Intel's open source UPnP SDK for Linux being the first. Windows XP also had UPnP support built-in since its release in 2001. There are currently implementa- tions for various operating systems, including Windows, VxWorks, Linux[1][2] and FreeBSD[1][2]. The UPnP protocol stack uses well-defined Internet standards, such as HTTP, XML and SOAP. One of the best known programs that uses UPnP is Microsoft's MSN Messenger. Ports that need to be opened on the firewall for voice and video traffic (the \web- cam" feature) and direct file transfers in MSN Messenger are allocated dynamically using UPnP. This is done by sending special UPnP commands to a UPnP enabled firewall if the machine that runs MSN Messenger is behind a firewall or NAT de- vice and cannot communicate with the other machine directly.
    [Show full text]
  • Jini and Universal Plug and Play (Upnp) Notes
    Jini and Universal Plug and Play (UPnP) Notes Abstract Jini and UPnP are overlapping technologies. They both address the area of device connectivity and the ability to dynamically make use of new devices on the network. The emphasis in UPnP is on hardware devices offering services, whereas Jini emphasises services – both software and hardware. UPnP seems to focus on providing the ability of devices to join a network and have those devices provide an API (via HTTP and SOAP) by which other devices on the network can run their software using the offered API. Jini is aimed at providing a broad framework for provisioning distributed computing which includes device collaboration on a network, but also includes additional, required components for robust service offerings across both a LAN and WAN. Probably the most important component to meet the goal of robust distributed computing on a network is the concept of providing code mobility between devices and application spaces. The following document provides an outline of the basics features or functions required for distributed service offering, and tries to compare the methods of providing these services by UPnP and Jini. NOTICE OF COPYRIGHT AND PROPRIETARY RIGHTS The views, conclusions, and recommendations expressed herein do not necessarily reflect the official views or policies of PsiNaptic Inc. Any proprietary information, including but not limited to technical descriptions, software and hardware designs, diagrams, schematics, listings, and bills of materials, contained in this document is the exclusive property of PsiNaptic Inc. No part of this work may be reproduced, recreated, or transmitted in any form or by any means, except as permitted by written license agreement with PsiNaptic Inc.
    [Show full text]
  • Plug-And-Play Bug Exposes Millions of Network Devices 12 June 2020, by Peter Grad
    Plug-and-play bug exposes millions of network devices 12 June 2020, by Peter Grad traffic, block legitimate traffic, overwhelm processing resources and cause the systems to crash. Çadirci operates a website dedicated to information about the CallStranger vulnerability. He first detected it late last year and notified the Open Connectivity Foundation, which has since updated UPnP specifications to address the issue. Vendors and Internet service providers requested notice of the vulnerability be withheld until they had time to address the issue. "Because this is a protocol vulnerability, it may take a long time for vendors to provide patches," Çadirci said in his report. Since some manufacturers have Credit: Pixabay/CC0 Public Domain not yet corrected the issue and many IoT devices never receive updates, consumers should contact manufacturers of any UPnP devices they use to determine if software or hardware patches are A bug in a protocol used by virtually all Internet of available. Things devices exposes millions of users to potential attack, a researcher reported Monday. Universal Plug and Play has long been known to The fault centers on the Universal Plug and Play leave users vulnerable to attacks. A 2013 research protocol, a 12-year-old implementation that project confirmed that more than 81 million devices simplifies connections among network devices that presumably were protected within local such as computers, printers, mobile devices and networks were in fact visible to potentially malicious Wi-Fi access points. actors beyond those networks. Billions of devices are theoretically vulnerable, the "We see data exfiltration as the biggest risk of report stated, but only those with UPnP activated CallStranger," Çadirci said.
    [Show full text]
  • How to Configure a Upnp Internet Gateway Device with Windows XP
    How To | Configure A Router As A UPnP Internet Gateway Device With A Windows® XP® Machine As A UPnP Control Point Introduction This How To Note describes how to configure your router as a UPnP Internet Gateway Device (IGD), and provides a configuration example for setting up UPnP components. This note also outlines how to configure your Windows® XP® machine as a UPnP control point. Note: This How To Note describes the Allied Telesis implementation of InternetGatewayDevice:1 Device Template Version 1.01 for Universal Plug and Play Version 1.0. Although every effort has been made to comply with the Internet Gateway Device:1 Device Template Version 1.01 Standardized DCP, this implementation has not been certified by the UPnP Implementers Corporation. Which products and versions does it apply to? This document applies to the following Allied Telesis routers: z AR720 and AR740 routers, running software release 2.6.4 or later z other AR700 series routers, running software release 2.7.1 or later z AR400 series routers, running software release 2.7.1 or later Related How To Notes You may also find the following How To Note useful: z How To Configure UPnP How To Notes are available from www.alliedtelesis.com/resources/literature/howto.aspx. C613-16001-00 REV B www.alliedtelesis.com What is Universal Plug and Play (UPnP)? Universal Plug and Play (UPnP) is an architecture that allows for dynamic connectivity between devices on a network. Devices may dynamically add themselves to a network without the need for user intervention or configuration. A UPnP-enabled device may obtain an IP address, advertise its capabilities, learn about other connected UPnP devices and then communicate directly with those devices.
    [Show full text]
  • Engineered to Enhance Bluetooth® Connectivity from Your Jabra Device to Your Computer
    DATA SHEET LINK 380 Engineered to enhance Bluetooth® connectivity from your Jabra device to your computer Take your headset performance to the next level with the Jabra Link 380 Bluetooth adapter. Available in USB-A and USB-C, this convenient little adapter slots neatly into your computer’s USB port, connecting your Jabra Bluetooth headset to your computer and enhancing both the sound quality and the wireless coverage for your UC calls, with range up to to 30m / 100 ft. Better connection, better UC performance Sound that won’t let you down For a headset to be UC-certified, most UC vendors require Whether you’re sitting at your desk or not, your sound quality superior connectivity, which is guaranteed by a Bluetooth shouldn’t change. With A2DP Bluetooth 5.0 profile and HD adapter. Jabra Link 380 is available in two variants, one for Voice, Jabra Link 380 gives you rich sound quality, even when Microsoft Teams-certified devices and one for UC-certified you’re away from your computer, allowing you to enjoy crystal- devices. So whatever platform you’re using, you can be sure clear conversations and stream music in incredible HiFi sound you’re getting the gold standard in connectivity. quality. Link 380 keeps your headset sounding great, whatever you’re doing. The freedom to roam Maximum control, minimum effort You need a stable wireless connection if you want to be able to walk and talk. Without a Bluetooth adapter, your device’s Technology is better when it’s easy to use. Jabra Link 380 is connection might get patchy over a relatively short distance.
    [Show full text]
  • Universal Plug and Play (Upnp) Configuration on the RV120W Routers
    Universal Plug and Play (UPnP) Configuration on the RV120W Routers Objectives Universal Plug and Play (UPnP) is a network protocol that allows devices to discover each other on the network. The discovered devices can then establish network services for data sharing, communications, and entertainment. UPnP also include a feature that automatically configure the router to open and close ports for internet application, such as gaming. One of the main feature that UPnP option provide is that, when connected to a network they automatically establish working configurations with other devices.The UPnP architecture allows device-to-device networking of personal computers, network capable home appliances, electronics devices and wireless devices. This document explains how to set up UPnP on the Cisco RV120W routers. Applicable Devices • RV120W Software Version • 1.0.4.10 UPnP Configuration Step 1. Log into the web configuration utility and choose Administration > Discovery Settings > Discovery-UPnP. The Discovery - UPnP page opens: Step 2. Check Enable to enable UPnP. Step 3. In Advertisement Period, enter the value in number of seconds,. This will broadcast its UPnP information to all devices within range. Step 4. In Advertisement Time to Live field, enter the value in number of seconds. This will broadcast that an advertisement is active. Note: If the value is 100 or higher in Advertisement Time To Live, this eliminates the need to turn UPnP on/off after each reboot. The UPnP Interface Control Table displays the information: • VLAN ID number —VLAN ID can range from 2 to 4094, VLAN ID 1 is reserved for the default VLAN, which is used for untagged frames received on the interface, and VLAN ID 4092 is reserved and cannot be used .
    [Show full text]
  • Upnp Device Architecture Version
    UPnP Device Architecture 2.0 Document Revision Date: April 17, 2020 PORTIONS OF THIS APPROVED SPECIFICATION WERE COMPLETED PRIOR TO THE COMBINATION OF UPNP INTO THE OPEN CONNECTIVITY FOUNDATION. FOR PORTIONS OF THE SPECIFICATION THAT WERE PUBLISHED ON OR PRIOR TO FEBRUARY 20, 2015 THE FOLLOWING APPLIES: ALL LICENSES, INTELLECTUAL PROPERTY RIGHTS, AND OTHER RIGHTS, RESPONSIBILITIES, OBLIGATIONS, STANDARDS, AND PROTOCOLS ASSOCIATED WITH PORTIONS OF THIS APPROVED SPECIFICATION THAT WERE PUBLISHED ON OR PRIOR TO FEBRUARY 20, 2015 ARE SUBJECT TO THE UPNP BYLAWS AND FORUM MEMBERSHIP AGREEMENT. Legal Disclaimer NOTHING CONTAINED IN THIS DOCUMENT SHALL BE DEEMED AS GRANTING YOU ANY KIND OF LICENSE IN ITS CONTENT, EITHER EXPRESSLY OR IMPLIEDLY, OR TO ANY INTELLECTUAL PROPERTY OWNED OR CONTROLLED BY ANY OF THE AUTHORS OR DEVELOPERS OF THIS DOCUMENT. THE INFORMATION CONTAINED HEREIN IS PROVIDED ON AN "AS IS" BASIS, AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE AUTHORS AND DEVELOPERS OF THIS SPECIFICATION HEREBY DISCLAIM ALL OTHER WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, STATUTORY OR AT COMMON LAW, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. OPEN CONNECTIVITY FOUNDATION, INC. FURTHER DISCLAIMS ANY AND ALL WARRANTIES OF NON-INFRINGEMENT, ACCURACY OR LACK OF VIRUSES. The OCF Logo, UPnP Word Mark and UPnP Logo are trademarks of Open Connectivity Foundation, Inc. in the United States or other countries. *Other names and brands may be claimed as the property of others. Copyright © 2016-2020 Open Connectivity Foundation, Inc. All rights reserved. Copying or other form of reproduction and/or distribution of these works are strictly prohibited.
    [Show full text]