Home | History | Annotate | Download | only in message

Lines Matching refs:cseq

212      * the contact headers. (2) Request must have cseq, to and from and via headers. (3) Method in
213 * request URI must match that in CSEQ.
311 throw new ParseException("CSEQ method mismatch with Request-Line ", 0);
350 CSeq cseq = (CSeq) this.getCSeq();
351 if (cseq != null) {
352 method = getCannonicalName(cseq.getMethod());
707 || nextHeader instanceof CSeq
765 * Call-ID, To, the numeric part of CSeq, and From header fields in the CANCEL request
770 * such matching occurs). However, the method part of the CSeq header field MUST have a
845 } else if (nextHeader instanceof CSeq) {
846 // The CSeq header field in the
851 CSeq cseq = (CSeq) nextHeader.clone();
853 cseq.setMethod(Request.ACK);
856 nextHeader = cseq;
912 * original request. The CSeq header field in the ACK MUST contain the same value for the
982 // For BYE and cancel set the CSeq header to the
984 if (nextHeader instanceof CSeq) {
985 CSeq newCseq = (CSeq) nextHeader.clone();
1175 * generate an identifier from the From tag, Call-ID, and CSeq
1178 String cseq = this.cSeqHeader.toString();
1186 return new StringBuffer().append(requestUri).append(":").append(fromTag).append(":").append(cseq).append(":")