Searched defs:sipResponse (Results 1 - 8 of 8) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DServerResponseInterface.java56 * @param sipResponse is the responseto process.
60 SIPResponse sipResponse,
69 * @param sipResponse
73 SIPResponse sipResponse,
59 processResponse( SIPResponse sipResponse, MessageChannel incomingChannel, SIPDialog sipDialog) argument
72 processResponse( SIPResponse sipResponse, MessageChannel incomingChannel) argument
H A DStackMessageFactory.java63 * @param sipResponse is the incoming response.
68 SIPResponse sipResponse,
67 newSIPServerResponse( SIPResponse sipResponse, MessageChannel msgChan) argument
H A DMessageChannel.java362 public void logResponse(SIPResponse sipResponse, long receptionTime, String status) { argument
364 if (peerport == 0 && sipResponse.getContactHeaders() != null) {
365 ContactHeader contact = (ContactHeader) sipResponse.getContactHeaders().getFirst();
371 this.getSIPStack().serverLogger.logMessage(sipResponse, from, to, status, false,
H A DSIPClientTransaction.java1330 * @param sipResponse the response to check.
1333 public boolean checkFromTag(SIPResponse sipResponse) { argument
1336 if (originalFromTag == null ^ sipResponse.getFrom().getTag() == null) {
1342 && !originalFromTag.equalsIgnoreCase(sipResponse.getFrom().getTag())) {
1358 public void processResponse(SIPResponse sipResponse, MessageChannel incomingChannel) { argument
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
[all...]
H A DSIPDialog.java599 * @param sipResponse -- response with the appropriate tags.
601 public SIPDialog(SIPClientTransaction transaction, SIPResponse sipResponse) { argument
603 if (sipResponse == null)
605 this.setLastResponse(transaction, sipResponse);
612 public SIPDialog(SipProviderImpl sipProvider, SIPResponse sipResponse) { argument
615 this.setLastResponse(null, sipResponse);
616 this.localSequenceNumber = sipResponse.getCSeq().getSeqNumber();
618 this.myTag = sipResponse.getFrom().getTag();
619 this.hisTag = sipResponse.getTo().getTag();
620 this.localParty = sipResponse
827 addRoute(SIPResponse sipResponse) argument
1871 createRequest(String method, SIPResponse sipResponse) argument
2526 setResponseTags(SIPResponse sipResponse) argument
2551 setLastResponse(SIPTransaction transaction, SIPResponse sipResponse) argument
[all...]
H A DSIPTransactionStack.java658 * @param sipResponse
662 public SIPDialog createDialog(SIPClientTransaction transaction, SIPResponse sipResponse) { argument
667 if (sipResponse.isFinalResponse()) {
672 retval = new SIPDialog(transaction, sipResponse);
681 * @param sipResponse
685 SIPResponse sipResponse) {
686 return new SIPDialog(sipProvider, sipResponse);
684 createDialog(SipProviderImpl sipProvider, SIPResponse sipResponse) argument
/external/nist-sip/java/gov/nist/javax/sip/
H A DNistSipMessageFactoryImpl.java94 * @param sipResponse
101 SIPResponse sipResponse, MessageChannel messageChannel) {
106 .findTransaction(sipResponse, false);
109 "Found Transaction " + tr + " for " + sipResponse);
123 && sipResponse.getStatusCode() / 100 == 1) {
127 + sipResponse.getStatusCode());
100 newSIPServerResponse( SIPResponse sipResponse, MessageChannel messageChannel) argument
H A DDialogFilter.java110 SIPResponse sipResponse = sipRequest.createResponse(Response.REQUEST_PENDING);
113 sipResponse.setHeader(serverHeader);
118 sipResponse.setHeader(retryAfter);
122 transaction.sendResponse(sipResponse);
141 SIPResponse sipResponse = sipRequest.createResponse(Response.BAD_REQUEST);
143 sipResponse.setReasonPhrase(reasonPhrase);
146 sipResponse.setHeader(serverHeader);
152 transaction.sendResponse(sipResponse);
172 SIPResponse sipResponse = sipRequest
177 sipResponse
1269 processResponse(SIPResponse sipResponse, MessageChannel incomingChannel) argument
[all...]

Completed in 526 milliseconds