Raritan PX2/PX3 JSON-RPC API
Services.idl
1 
4 module net {
5 
7  structure ServiceSettings {
8  string service;
9  boolean enable;
10  int port;
11  };
12 
14  interface Services {
15 
16  constant int ERR_INVALID_PARAMS = 1;
17 
23  void getSettings(out vector<ServiceSettings> servicesSettings);
24 
38  int setSettings(in vector<ServiceSettings> servicesSettings);
39 
40  };
41 
42 }
int port
Service TCP port.
Definition: Services.idl:10
Network services configuration interface.
Definition: Services.idl:14
Network service settings.
Definition: Services.idl:7
boolean enable
true if the service is enabled
Definition: Services.idl:9
Network Configuration.
Definition: Diagnostics.idl:4
string service
Service name.
Definition: Services.idl:8