MatrixEventCallAnswer

MatrixEventCallAnswer — This event is sent by the callee when they wish to answer the call.

Functions

Types and Values

Description

Functions

MATRIX_EVENT_TYPE_CALL_ANSWER

#define MATRIX_EVENT_TYPE_CALL_ANSWER (matrix_event_call_answer_get_type ())

The type for MatrixEventCallAnswer.


matrix_event_call_answer_new ()

MatrixEventCallAnswer *
matrix_event_call_answer_new (void);

matrix_event_call_answer_get_answer_type ()

MatrixCallAnswerType
matrix_event_call_answer_get_answer_type
                               (MatrixEventCallAnswer *self);

Get and return the current value of the "answer-type" property.

The type of session description.

Parameters

self

the MatrixEventCallAnswer instance to query

 

Returns

the value of the "answer-type" property


matrix_event_call_answer_set_answer_type ()

void
matrix_event_call_answer_set_answer_type
                               (MatrixEventCallAnswer *self,
                                MatrixCallAnswerType value);

Set the value of the "answer-type" property to value .

The type of session description.

Parameters

self

the MatrixEventCallAnswer instance to modify

 

value

the new value of the "answer-type" property

 

matrix_event_call_answer_get_answer_sdp ()

const gchar *
matrix_event_call_answer_get_answer_sdp
                               (MatrixEventCallAnswer *self);

Get and return the current value of the "answer-sdp" property.

The SDP text of the session description.

Parameters

self

the MatrixEventCallAnswer instance to query

 

Returns

the value of the "answer-sdp" property


matrix_event_call_answer_set_answer_sdp ()

void
matrix_event_call_answer_set_answer_sdp
                               (MatrixEventCallAnswer *self,
                                const gchar *value);

Set the value of the "answer-sdp" property to value .

The SDP text of the session description.

Parameters

self

the MatrixEventCallAnswer instance to modify

 

value

the new value of the "answer-sdp" property

 

Types and Values

struct MatrixEventCallAnswer

struct MatrixEventCallAnswer {
	MatrixEventCall parent_instance;
	MatrixEventCallAnswerPrivate * priv;
};

This event is sent by the callee when they wish to answer the call.


struct MatrixEventCallAnswerClass

struct MatrixEventCallAnswerClass {
	MatrixEventCallClass parent_class;
};

The class structure for MATRIX_EVENT_TYPE_CALL_ANSWER. All the fields in this structure are private and should never be accessed directly.

Members

MatrixEventCallClass parent_class;

the parent class structure