Added "RTCP Multiplexing" account setting

This commit is contained in:
Juha Heinanen
2022-12-10 01:09:50 +02:00
parent fe295762d0
commit 364c19333b
7 changed files with 71 additions and 0 deletions

View File

@ -948,6 +948,19 @@ Java_com_tutpro_baresip_Api_account_1set_1answermode(JNIEnv *env, jobject thiz,
return account_set_answermode((struct account *)acc, mode);
}
JNIEXPORT jboolean JNICALL
Java_com_tutpro_baresip_Api_account_1rtcp_1mux(JNIEnv *env, jobject thiz, jlong acc)
{
return account_rtcp_mux((struct account *)acc);
}
JNIEXPORT jint JNICALL
Java_com_tutpro_baresip_Api_account_1set_1rtcp_1mux(JNIEnv *env, jobject thiz, jlong acc,
jboolean value)
{
return account_set_rtcp_mux((struct account *)acc, value);
}
JNIEXPORT jint JNICALL
Java_com_tutpro_baresip_Api_account_1dtmfmode(JNIEnv *env, jobject thiz, jlong acc)
{