netmgt_unregister_rendez manual page
Table of Contents

NAME

netmgt_unregister_rendez - unregister from the event dispatcher

SYNOPSIS

bool_t
netmgt_unregister_rendez(event_host, rendez_host, rendez_prog, rendez_vers, agent_prog, event_priority, timeout) char *event_host;
char *rendez_host;
u_long
rendez_prog;
u_long
rendez_vers;
u_long
agent_prog;
u_int
event_priority;
struct
timeval timeout;

DESCRIPTION

netmgt_unregister_rendez asks the event dispatcher on event_host to stop sending event reports with priority event_priority from agents with RPC program number agent_prog to the rendezvous process with RPC program number rendez_prog and RPC version number rendez_vers on rendez_host.

INPUT ARGUMENTS

event_host
name of the system where the event dispatcher is running.

rendez_host
name of the system where the rendezvous process is running.

rendez_prog
RPC program number of the rendezvous process.

rendez_vers
RPC version number of the rendezvous process.

agent_prog
RPC program number of the agent who was sending the reports.

event_priority
event report priority, which can be one of three values: NETMGT_LOW_PRIORITY, NETMGT_MEDIUM_PRIORITY, or NETMGT_HIGH_PRIORITY.

timeout
maximum time to wait for confirmation from the event dispatcher.

RETURN VALUE

TRUE if successful, otherwise FALSE.

DIAGNOSTICS

If FALSE is returned, global variable netmgt_error indicates the error. The caller can get the reason for the error with netmgt_fetch_error(3n).

SEE ALSO

netmgt_fetch_error(3n)


Table of Contents