Skip to content
Updated Multi Server Mode for NetGear API (markdown) authored by Abhishek Thakur's avatar Abhishek Thakur
...@@ -77,12 +77,14 @@ To tweak Multi-Server Mode, NetGear API provide certain internal attribute for i ...@@ -77,12 +77,14 @@ To tweak Multi-Server Mode, NetGear API provide certain internal attribute for i
```python ```python
options = {'multiserver_mode':True} # activates Multi-Server Mode options = {'multiserver_mode':True} # activates Multi-Server Mode
``` ```
💡 _See its usage example [below 🔽](#multi-server-mode-with-custom-message-transfer)._
* **`filter`** (_string_): this attribute assigns a custom topic filter to allow only specific Servers at the Clients-end in Multi-Server Mode only. Its usage is as follows: * **`filter`** (_string_): this attribute assigns a custom topic filter to allow only specific Servers at the Clients-end in Multi-Server Mode only. Its usage is as follows:
```python ```python
options = {'multiserver_mode':True, 'filter':'5565'} # activate Multi-Server Mode and set filter to allow data from topic `5565` only options = {'multiserver_mode':True, 'filter':'5565'} # activate Multi-Server Mode and set filter to allow data from topic `5565` only
``` ```
💡 _See its usage example [below 🔽](#multi-server-mode-with-custom-filter)._
### Parameters: ### Parameters:
... ...
......