Home | History | Annotate | Download | only in stack

Lines Matching defs:cseq

41 import gov.nist.javax.sip.header.CSeq;
1183 // JvB: Acceptable iff remoteCSeq < cseq. remoteCSeq==-1
1622 * @param lCseq is the local cseq number.
1638 * @param rCseq is the remote cseq number.
1648 * Increment the local CSeq # for the dialog. This is useful for if you want to create a hole
1657 * Get the remote sequence number (for cseq assignment of outgoing requests within this
1669 * Get the local sequence number (for cseq assignment of outgoing requests within this
1902 CSeq cseq = new CSeq();
1904 cseq.setMethod(method);
1905 cseq.setSeqNumber(this.getLocalSeqNumber());
1932 SIPRequest sipRequest = sipResponse.createRequest(sipUri, via, cseq, from, to);
1954 cseq = (CSeq) sipRequest.getCSeq();
1955 cseq.setSeqNumber(this.localSequenceNumber + 1);
2318 * CSeq-num, and response-num in the RAck header field match, respectively, the method from
2319 * the CSeq, the sequence number from the CSeq, and the sequence number from the RSeq of the
2371 * request sent within a dialog (see Section 12) with the exception of the CSeq and the header
2372 * fields related to authentication. The sequence number of the CSeq header field MUST be the
2373 * same as the INVITE being acknowledged, but the CSeq method MUST be ACK. The ACK MUST
2380 * with a different cseq and hence you need to supply the invite.
2393 throw new InvalidArgumentException("bad cseq <= 0 ");
2395 throw new InvalidArgumentException("bad cseq > " + ((((long) 1) << 32) - 1));
2451 sipRequest.setCSeq(new CSeq(cseqno, Request.ACK));
2948 * number, and the method, are copied from the CSeq in the response that is being
2974 CSeq cseq = (CSeq) sipResponse.getCSeq();
2976 if (!rack.getMethod().equals(cseq.getMethod())) {
2979 "Dropping Prack -- CSeq Header does not match PRACK");
2983 if (rack.getCSeqNumberLong() != cseq.getSeqNumber()) {
2986 "Dropping Prack -- CSeq Header does not match PRACK");