Name
Ns_PdDbIndentify -- Send an identity string to the
client.
Syntax
void Ns_PdDbIdentify (void
*handle);
Description
This function sends a string identifying the proxy daemon
name and version.
Pseudo-code Example
#define INDENTITY_STRING "My Proxy Daemon v.1.0"
void
Ns_PdDbIdentify(void *handle) {
Ns_PdLog(Trace, "identify:");
Ns_PdSendString(IDENTITY_STRING);
}
|