Lines Matching defs:CSeq
169 /* Initialize the CSeq if not already done */
208 "The CSeq of this request %ld did not match the response %ld",
214 infof(data, "Got an RTP Receive with a CSeq of %ld", CSeq_recv);
425 if(Curl_checkheaders(data, STRCONST("CSeq"))) {
426 failf(data, "CSeq cannot be set as a custom header.");
440 "CSeq: %ld\r\n", /* CSeq */
578 /* Increment the CSeq on success */
909 if(checkprefix("CSeq:", header)) {
910 long CSeq = 0;
915 CSeq = strtol(p, &endp, 10);
918 rtsp->CSeq_recv = CSeq; /* mark the request */
919 data->state.rtsp_CSeq_recv = CSeq; /* update the handle */
922 failf(data, "Unable to read the CSeq header: [%s]", header);