Home
last modified time | relevance | path

Searched refs:currentTransaction (Results 1 – 1 of 1) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPTransactionStack.java1149 SIPServerTransaction currentTransaction; in newSIPServerRequest() local
1155 currentTransaction = (SIPServerTransaction) serverTransactionTable.get(key); in newSIPServerRequest()
1158 if (currentTransaction == null in newSIPServerRequest()
1159 || !currentTransaction.isMessagePartOfTransaction(requestReceived)) { in newSIPServerRequest()
1163 currentTransaction = null; in newSIPServerRequest()
1165 while (transactionIterator.hasNext() && currentTransaction == null) { in newSIPServerRequest()
1173 currentTransaction = nextTransaction; in newSIPServerRequest()
1179 if (currentTransaction == null) { in newSIPServerRequest()
1180 currentTransaction = findPendingTransaction(requestReceived); in newSIPServerRequest()
1181 if (currentTransaction != null) { in newSIPServerRequest()
[all …]