void Ns_ServerSpecificSet( char *handle, int id, void *data, int flags, void (*deletefunc) (void *) );
The Ns_ServerSpecificSet function stores server-specific data, allowing subsequent retrieval using handle
and id
. The flags
argument can be NS_OP_NODELETE. The deletefunc
function is called with data
as an argument when this handle/id combination is re-registered or deleted, or when this server shuts down, unless NS_OP_NODELETE is set.