gurba-0.40/
gurba-0.40/bin/
gurba-0.40/lib/
gurba-0.40/lib/cmds/guild/fighter/
gurba-0.40/lib/cmds/monster/
gurba-0.40/lib/cmds/race/catfolk/
gurba-0.40/lib/cmds/race/dwarf/
gurba-0.40/lib/cmds/verb/
gurba-0.40/lib/daemons/data/
gurba-0.40/lib/data/boards/
gurba-0.40/lib/data/messages/
gurba-0.40/lib/data/players/
gurba-0.40/lib/design/
gurba-0.40/lib/domains/gurba/
gurba-0.40/lib/domains/gurba/guilds/fighter/
gurba-0.40/lib/domains/gurba/monsters/
gurba-0.40/lib/domains/gurba/objects/armor/
gurba-0.40/lib/domains/gurba/objects/clothing/
gurba-0.40/lib/domains/gurba/objects/weapons/
gurba-0.40/lib/domains/gurba/vendors/
gurba-0.40/lib/kernel/cmds/admin/
gurba-0.40/lib/kernel/daemons/
gurba-0.40/lib/kernel/include/
gurba-0.40/lib/kernel/lib/
gurba-0.40/lib/kernel/net/
gurba-0.40/lib/kernel/sys/
gurba-0.40/lib/logs/
gurba-0.40/lib/pub/
gurba-0.40/lib/std/modules/languages/
gurba-0.40/lib/std/races/
gurba-0.40/lib/std/races/monsters/
gurba-0.40/lib/wiz/fudge/
gurba-0.40/lib/wiz/spud/
gurba-0.40/src/host/beos/
gurba-0.40/src/host/pc/res/
gurba-0.40/src/kfun/
gurba-0.40/src/lpc/
gurba-0.40/src/parser/
gurba-0.40/tmp/
NAME
	send_message - send a message to a user

SYNOPSIS
	int send_message(string message)
	int send_message(int echo)


DESCRIPTION
	In the first form, send a message to the user associated with the
	current object.  In the second form, user input echoing will be
	turned off or on, the value of echo being zero or non-zero,
	respectively.  Used by the driver object, send_message() will write
	the message on stderr.
	For binary connections, send_message() will return the length of the
	string if it could be sent right away, a number indicating how much of
	the string could be sent immediately, or -1 otherwise.  If only part of
	the string could be sent initially, message_done() will be called in
	the user object when the remainder has also been sent.  If
	send_message() is used to send new data before all of the pending data
	from a previous call has been sent, the pending data is discarded.
	For telnet connections, send_message() will always return the length
	of the string sent.

SEE ALSO
	kfun/query_ip_number, kfun/this_user, kfun/users