rename up_ptime into upload_ptime

This commit is contained in:
Simon Morlat 2011-06-22 12:26:41 +02:00
parent 541b186df2
commit c971007361

View file

@ -880,7 +880,7 @@ int linphone_core_get_download_ptime(LinphoneCore *lc) {
*
**/
void linphone_core_set_upload_ptime(LinphoneCore *lc, int ptime){
lp_config_set_int(lc->config,"rtp","up_ptime",ptime);
lp_config_set_int(lc->config,"rtp","upload_ptime",ptime);
}
/**
@ -889,7 +889,7 @@ void linphone_core_set_upload_ptime(LinphoneCore *lc, int ptime){
*
**/
int linphone_core_get_upload_ptime(LinphoneCore *lc){
return lp_config_get_int(lc->config,"rtp","up_ptime",0);
return lp_config_get_int(lc->config,"rtp","upload_ptime",0);
}