Home | History | Annotate | Download | only in stack

Lines Matching refs:sipResponse

44 import gov.nist.javax.sip.message.SIPResponse;
499 public synchronized void processResponse(SIPResponse transactionResponse,
606 private void nonInviteClientTransaction(SIPResponse transactionResponse,
723 private void inviteClientTransaction(SIPResponse transactionResponse,
1330 * @param sipResponse the response to check.
1333 public boolean checkFromTag(SIPResponse sipResponse) {
1336 if (originalFromTag == null ^ sipResponse.getFrom().getTag() == null) {
1342 && !originalFromTag.equalsIgnoreCase(sipResponse.getFrom().getTag())) {
1355 * @see gov.nist.javax.sip.stack.ServerResponseInterface#processResponse(gov.nist.javax.sip.message.SIPResponse,
1358 public void processResponse(SIPResponse sipResponse, MessageChannel incomingChannel) {
1363 String method = sipResponse.getCSeq().getMethod();
1364 String dialogId = sipResponse.getDialogId(false);
1378 int code = sipResponse.getStatusCode();
1381 && (sipResponse.getToTag() != null || sipStack.isRfc2543Supported())
1397 if (sipResponse.getFromTag() != null) {
1398 SIPResponse dialogResponse = defaultDialog.getLastResponse();
1406 defaultDialog.setLastResponse(this, sipResponse);
1422 dialog = sipStack.createDialog(this, sipResponse);
1440 dialog = sipStack.createDialog(this, sipResponse);
1449 dialog.setLastResponse(this, sipResponse);
1451 this.processResponse(sipResponse, incomingChannel, dialog);