int aw_world_ejection_delete (void)

DESCRIPTION

Removes an ejection from the world.

CALLBACK

AW_CALLBACK_WORLD_EJECTION_RESULT

NOTES

This method has been changed in Active Worlds 3.3. The ejection to be deleted is now specified by the AW_EJECTION_TYPE and AW_EJECTION_ADDRESS attributes, and not via function argument. See aw_world_ejection_add for a complete description of these attributes and how to use them.

Only instances owned by the world caretaker may use aw_world_ejection_delete.

EXAMPLE

/* unblock a class C IP address from the world */
aw_int_set (AW_EJECTION_TYPE, AW_EJECT_BY_ADDRESS);
aw_int_set (AW_EJECTION_ADDRESS, inet_addr ("241.197.54.0"));
if (aw_world_ejection_delete ()
  printf ("Unable to delete ejection\n");

SEE ALSO

aw_world_ejection_add
aw_world_ejection_lookup
aw_world_ejection_next
aw_world_ejection_previous