A-53
A4
/* The hostname procedure is used to read/modify the hostname used by the
* Edevice. The hostname is only applicable if a dynamic DNS service is
* available.
*/
struct Hostname_Parms {
unsigned int action;
opaque name<>;
};
struct Hostname_Resp {
unsigned int error;
opaque name<>;
};
/* The static_ip_mode procedure is used to read/modify the static IP mode.
* If static_ip_mode is set TRUE, then the Edevice will use a static IP
* and will need a netmask and gateway IP.
*/
struct Static_IP_Parms {
unsigned int action;
unsigned int mode;
};
struct Static_IP_Resp {
unsigned int error;
unsigned int mode;
};
/* The ip_number procedure is used to read/modify the static IP number.
* If static_ip_mode is set TRUE, then the Edevice will use a static IP
* (see the static_ip_mode function) and will need a netmask and gateway IP.
*/
struct IP_Number_Parms {
unsigned int action;
unsigned int ip; /* see IP-note above */
};
struct IP_Number_Resp {
unsigned int error;
unsigned int ip; /* see IP-note above */
};
/* The netmask procedure is used to read/modify the netmask.
* If static_ip_mode is set TRUE, then the Edevice will use a static IP
* (see the static_ip_mode function) and will need a netmask and gateway IP.
*/