Searched refs:INVITE (Results 1 - 15 of 15) sorted by relevance

/external/nist-sip/java/javax/sip/message/
H A DRequest.java10 String INVITE = "INVITE"; field in interface:Request
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DTokenNames.java45 public static final String INVITE = Request.INVITE; field in interface:TokenNames
H A DParser.java82 if (token.getTokenType() == INVITE
H A DTokenTypes.java42 public static final int INVITE = START + 5; field in interface:TokenTypes
H A DLexer.java103 addKeyword(TokenNames.INVITE, TokenTypes.INVITE);
/external/nist-sip/java/gov/nist/javax/sip/
H A DDialogFilter.java119 if (sipRequest.getMethod().equals(Request.INVITE)) {
149 if (sipRequest.getMethod().equals(Request.INVITE)) {
180 if (sipRequest.getMethod().equals(Request.INVITE)) {
415 && lastRequest.getMethod().equals(Request.INVITE)) {
422 if (method.equals(Request.INVITE) && !dialog.isAckSent(cseqno)) {
445 sipStack.getStackLogger().logDebug("Processing ACK for INVITE Tx ");
536 if (sipRequest.getMethod().equals(Request.INVITE)
752 + "enabled and INVITE ST does not exist!");
767 // INVITE was handled statefully so the CANCEL must also be
775 // Dont let the INVITE an
[all...]
H A DEventScanner.java166 // of the former case is INVITE.
177 // to the listener (tx == INVITE ST, terminated upon sending
316 * INVITE request due to a forking proxy. Each response is
328 .equals(Request.INVITE)
346 // The original request is not needed except for INVITE
354 Request.INVITE)) {
H A DSipProviderImpl.java520 if (sipRequest.getMethod().equals(Request.INVITE) && this.isDialogErrorsAutomaticallyHandled()) {
860 if (sipRequest.getMethod().equals(Request.INVITE) && this.isDialogErrorsAutomaticallyHandled()) {
H A DSipStackImpl.java177 * Setting this to <it>true</it> imposes serialization on re-INVITE and makes
178 * the sending of re-INVITEs asynchronous. The sending of re-INVITE is
181 * till an ACK has been sent before admitting the new re-INVITE. If the previous
182 * in-DIALOG transaction was a INVITE ServerTransaction then Dialog waits for
183 * ACK before re-INVITE is allowed to be sent. If a dialog is not ACKed within
260 * transactions. This is not standard behavior per RFC 3261 (INVITE server
337 * CANCEL client transaction is not checked for the existence of the INVITE or
338 * the state of INVITE when you send the CANCEL request. Hence you can CANCEL an
339 * INVITE from a different stack than the INVITE
[all...]
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPRequest.java93 * Set of target refresh methods, currently: INVITE, UPDATE, SUBSCRIBE, NOTIFY, REFER
110 targetRefreshMethods.add(Request.INVITE);
116 putName(Request.INVITE);
268 * methods defined in this specification, that includes only the INVITE request. For these
276 if (requestLine.getMethod().equals(Request.INVITE)
299 * Contact header is mandatory for a SIP INVITE request.
302 && (this.getMethod().equals(Request.INVITE)
305 throw new ParseException("Contact Header is Mandatory for a SIP INVITE", 0);
332 if (method.compareTo(Request.REGISTER) == 0 || method.compareTo(Request.INVITE) == 0) {
758 // INVITE
[all...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPClientTransaction.java85 * |INVITE from TU
86 * Timer A fires |INVITE sent
88 * INVITE sent +-----------+ or Transport Err.
124 * Figure 5: INVITE client transaction
168 * Figure 6: non-INVITE client transaction
456 if (transactionRequest.getMethod().equals(Request.INVITE)) {
596 * Figure 6: non-INVITE client transaction
675 * |INVITE from TU
676 * Timer A fires |INVITE sent
678 * INVITE sen
[all...]
H A DSIPServerTransaction.java78 * |INVITE
80 * INVITE V send 100 if TU won't in 200ms
93 * INVITE V Timer G fires |
120 * Figure 7: INVITE server transaction
317 * This timer task is for INVITE server transactions. It will send a trying in 200 ms. if the
566 if ((method.equals(Request.INVITE) || !isTerminated())) {
620 // to be part of an otherwise-matching INVITE transaction.
918 // INVITE ST has TRYING as a Pseudo state
950 // This is the case for INVITE server transactions.
952 // PROCEEDING case below. There is no TRYING state for INVITE
[all...]
H A DSIPDialog.java112 * reported a bug in updating the route set (on RE-INVITE). Jens Tinfors submitted a bug fix and
120 * INVITE transactions, a Dialog is created when a success message is received (i.e. a response
238 // Stores the last OK for the INVITE
279 * This task waits till a pending ACK has been recorded and then sends out a re-INVITE. This
281 * the out of order INVITE). This is primarily for B2BUA support. A B2BUA may send a delayed
283 * re-INVITE otherwise the othr end will respond with a REQUEST_PENDING. We want to avoid this
284 * condition. Hence we wait till the ACK for the previous re-INVITE has been sent before
285 * sending the next re-INVITE.
311 * Could not send re-INVITE fire a timeout on the INVITE
[all...]
H A DSIPTransactionStack.java415 dialogCreatingMethods.add(Request.INVITE);
1044 if (! sipRequest.getMethod().equals(Request.INVITE)) {
1046 * Dont need to worry about request merging for Non-INVITE transactions.
1120 * Map a Server transaction (possibly sending out a 100 if the server tx is an INVITE). This
1461 if (method.equalsIgnoreCase(Request.INVITE)) {
1482 if ( clientTx.getMethod().equals(Request.INVITE) && this.maxForkTime != 0 ) {
H A DSIPTransaction.java89 * The maximum retransmit interval for non-INVITE requests and INVITE
107 * INVITE request retransmit interval, for UDP only
112 * INVITE transaction timeout timer
441 * Returns a flag stating whether this transaction is for an INVITE request
444 * @return -- true if this is an INVITE request, false if not.
447 return getMethod().equals(Request.INVITE);
575 // For INVITE Client transactions, double interval each time
579 // non-INVITE transactions and 3xx-6xx responses are capped at T2

Completed in 135 milliseconds