BONE_CALLBACK_BADCONTACT

Description
Called when a contact is refused by the server.  A NULL pointer is returned to show the end of the bad contacts.

Example

bone_setcallback(BONE_CALLBACK_BADCONTACT, callback_badcontact);

void callback_badcontact(BONEHANDLE bhnd, const char *contact)
{
    if (contact)  printf("Username %s invalid.\n", contact);
}