HomeSort by relevance Sort by last modified time
    Searched refs:CSeq (Results 1 - 12 of 12) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
CSeq.java 38 * CSeq SIP Header.
46 public class CSeq extends SIPHeader implements javax.sip.header.CSeqHeader {
66 public CSeq() {
67 super(CSEQ);
76 public CSeq(long seqno, String method) {
83 * Compare two cseq headers for equality.
85 * @return true if the two cseq headers are equals, false
135 "JAIN-SIP Exception, CSeq, setSequenceNumber(), "
139 "JAIN-SIP Exception, CSeq, setSequenceNumber(), "
159 "JAIN-SIP Exception, CSeq"
    [all...]
NameMap.java 93 putNameMap(CSEQ, CSeq.class.getName()); //8
HeaderFactoryImpl.java 243 CSeq cseq = new CSeq(); local
244 cseq.setMethod(method);
245 cseq.setSeqNumber(sequenceNumber);
247 return cseq;
744 throw new InvalidArgumentException("bad cseq/rseq arg");
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CSeqParser.java 37 * Parser for CSeq headers.
47 public CSeqParser(String cseq) {
48 super(cseq);
57 CSeq c = new CSeq();
59 this.lexer.match(TokenTypes.CSEQ);
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 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(); local
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 reques
851 CSeq cseq = (CSeq) nextHeader.clone(); local
1178 String cseq = this.cSeqHeader.toString(); local
    [all...]
SIPResponse.java 34 import gov.nist.javax.sip.header.CSeq;
404 * Check the response structure. Must have from, to CSEQ and VIA
409 throw new ParseException(CSeq.NAME+ " Is missing ", 0);
677 * @param cseq -- the CSeq header to assign to the request
682 public SIPRequest createRequest(SipUri requestURI, Via via, CSeq cseq, From from, To to) {
684 String method = cseq.getMethod();
690 newRequest.setHeader(cseq);
697 || nextHeader instanceof CSeq
    [all...]
SIPMessage.java 36 import gov.nist.javax.sip.header.CSeq;
154 protected CSeq cSeqHeader;
620 * allowed (fpr example CSeq).
634 * duplicates and one of this type already exists (e.g. CSeq header).
706 } else if (h instanceof CSeq) {
707 this.cSeqHeader = (CSeq) h;
755 } else if (toRemove instanceof CSeq) {
794 } else if (removed instanceof CSeq) {
818 * request contain the same values in the Call-ID, CSeq, To, and From fields (with the
    [all...]
MessageFactoryImpl.java 104 * @param cSeq -
105 * the new CSeqHeader object of the cSeq value of this Message.
122 String method, CallIdHeader callId, CSeqHeader cSeq,
127 || cSeq == null || from == null || to == null || via == null
136 sipRequest.setCSeq(cSeq);
161 * @param cSeq -
162 * the new CSeqHeader object of the cSeq value of this Message.
179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to,
183 || cSeq == null || from == null || to == null || via == null
194 sipRequest.setCSeq(cSeq);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageChannel.java 37 import gov.nist.javax.sip.header.CSeq;
409 + sipMessage.getCallId() + "CSeq = "
589 || hdrClass.equals(CSeq.class)
    [all...]
SIPDialog.java 41 import gov.nist.javax.sip.header.CSeq;
1902 CSeq cseq = new CSeq(); local
2974 CSeq cseq = (CSeq) sipResponse.getCSeq(); local
    [all...]
TCPMessageChannel.java 368 || hdrClass.equals(CSeq.class) || hdrClass.equals(Via.class)
TLSMessageChannel.java 348 || hdrClass.equals(CSeq.class) || hdrClass.equals(Via.class)

Completed in 873 milliseconds