Remove hard-coded settings in test app

Review URL: http://webrtc-codereview.appspot.com/76001

git-svn-id: http://webrtc.googlecode.com/svn/trunk@221 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
leozwang@google.com 2011-07-16 05:13:27 +00:00
parent 825e063a78
commit 61b100d3cc

View File

@ -607,8 +607,7 @@ Java_org_webrtc_videoengineapp_ViEAndroidJavaAPI_SetSendDestination(
"SetSendDestination: channel=%d, port=%d, ip=%s\n",
channel, port, ip);
int ret = vieData.netw->SetSendDestination(channel, "127.0.0.1"/*ip*/, port);
return ret;
return vieData.netw->SetSendDestination(channel, ip, port);
}