#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;
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. |
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.
2006/01/25 First release