tpnotify - routine for sending notification by client identifier
#include <atmi.h> int tpnotify(CLIENTID *clientid, char *data, long len, long flags)
tpnotify() allows a client or server to send an unsolicited message to an individual client.
clientid is a pointer to a client identifier saved from the TPSVCINFO structure of a previous or current service invocation, or passed to a client via some other communications mechanism (for example, retrieved via the administration interface).
The data portion of the request is pointed to by data, a buffer previously allocated by tpalloc(3c). len specifies how much of data to send. Note that if data points to a buffer type that does not require a length to be specified, (for example, an FML fielded buffer) then len is ignored (and may be 0). Also, data may be NULL in which case len is ignored.
Upon successful return from tpnotify(), the message has been delivered to the system for forwarding to the identified client. If the TPACK flag was set, a successful return means the message has been received by the client. Furthermore, if the client has registered an unsolicited message handler, the handler will have been called.
Following is a list of valid flags.
Unless the TPACK flag is set, tpnotify() does not wait for the message to be delivered to the client.
tpnotify() returns -1 on failure and sets tperrno to indicate the error condition.
Under the following conditions, tpnotify() fails and sets tperrno to:
intro(3c),
tpalloc(3c),
tpbroadcast(3c),
tpchkunsol(3c),
tpinit(3c),
tpsetunsol(3c),
tpterm(3c)