예제 #1
0
 /** Sends the ack when offer/answer is in 2xx/ack */
 public void ackWithAnswer(String contact, String session_descriptor) {
   if (contact != null) setLocalContact(new NameAddress(contact));
   Message ack = MessageFactory.create2xxAckRequest(this, session_descriptor);
   ackWithAnswer(ack);
 }
예제 #2
0
파일: Call.java 프로젝트: EQ4/sipdroid-pro
 /** Answers at the 2xx/offer (in the ack message) */
 public void ackWithAnswer(String sdp) {
   local_sdp = sdp;
   dialog.ackWithAnswer(contact_url, sdp);
 }