VCTResponseCode

Definition

#include <vct.h>

typedef enum {
	VCT_RESPONSE_OK,
	VCT_RESPONSE_BAD_REQUEST,
	VCT_RESPONSE_NOT_ACCEPTABLE,
	VCT_RESPONSE_BUSY_HERE,
	VCT_RESPONSE_TERMINATED,
	VCT_RESPONSE_DECLINE,
	VCT_RESPONSE_END
} VCTResponseCode;

Definition

VCT_RESPONSE_OK A request to talk or to terminate the talk is accepted.
VCT_RESPONSE_BAD_REQUEST A response for invalid requests.
VCT_RESPONSE_NOT_ACCEPTABLE A connection is not acceptable.
VCT_RESPONSE_BUSY_HERE A talking partner is busy.
VCT_RESPONSE_TERMINATED A request to cancel the talk is accepted.
VCT_RESPONSE_DECLINE A request to talk is rejected.

Description

These are SSP response codes. They are used in the VCT_Response function.

VCT_RESPONSE_BAD_REQUEST, VCT_RESPONSE_NOT_ACCEPTABLE, and VCT_RESPONSE_TERMINATED are used internally; the VCT_Response function should not be called using these codes.

See Also

VCT_Response

Revision History

2006/01/25 First release