ZXTM Control API Overview and Reference
Version 4.0
void setWebcacheTime(
String[] names
Unsigned Integer[] values
)
4.2.2 Structures
VirtualServer.BasicInfo
This structure contains the basic information for a virtual server. It is
used when creating a server, or modifying the port, protocol or default
pool of a server.
struct VirtualServer.BasicInfo {
# The port to listen for incoming connections on.
Integer port;
# The protocol that this virtual server handles.
VirtualServer.Protocol protocol;
# The default pool that traffic to this virtual server
will go to.
String default_pool;
}
VirtualServer.FTPPortRange
This structure contains the range of ports that FTP data connections use.
struct VirtualServer.FTPPortRange {
# The lower bound of the port range for FTP data
connections.
Integer low;
# The upper bound of the port range for FTP data
connections.
Integer high;
}
VirtualServer.RegexReplacement
This structure that contains a regex and a replacement string.
struct VirtualServer.RegexReplacement {
# The regular expression used to match against.
String regex;
76
New Page 1