Raritan PX2/PX3 JSON-RPC API
Zeroconf.idl
1 #include <Event.idl>
2 
6 module devsettings {
8  interface Zeroconf_2_0_0 {
9 
11  structure Settings {
12  boolean mdnsEnabled;
13  boolean llmnrEnabled;
14  };
15 
16  valueobject SettingsChangedEvent extends idl.Event {
17  Settings oldSettings;
19  };
20 
26  Settings getSettings();
27 
33  void setSettings(in Settings settings);
34  };
35 }
Settings newSettings
new settings
Definition: Zeroconf.idl:18
Zero-config service settings interface.
Definition: Zeroconf.idl:8
Basic IDL definitions.
Definition: Event.idl:6
Device Settings.
Definition: Modbus.idl:4
boolean mdnsEnabled
Enable zero-config advertising via mDNS for device.
Definition: Zeroconf.idl:12
Zero-configservice settings.
Definition: Zeroconf.idl:11
boolean llmnrEnabled
Enable zero-config advertising via LLMNR for device.
Definition: Zeroconf.idl:13