Lines Matching defs:CSeq
47 * -server CSeq counter
177 /* Initialize the CSeq if not already done */
217 "The CSeq of this request %ld did not match the response %ld",
223 infof(data, "Got an RTP Receive with a CSeq of %ld\n", CSeq_recv);
432 if(Curl_checkheaders(conn, "CSeq:")) {
433 failf(data, "CSeq cannot be set as a custom header.");
450 "CSeq: %ld\r\n", /* CSeq */
588 /* Increment the CSeq on success */
763 long CSeq = 0;
765 if(checkprefix("CSeq:", header)) {
766 /* Store the received CSeq. Match is verified in rtsp_done */
767 int nc = sscanf(&header[4], ": %ld", &CSeq);
770 rtsp->CSeq_recv = CSeq; /* mark the request */
771 data->state.rtsp_CSeq_recv = CSeq; /* update the handle */
774 failf(data, "Unable to read the CSeq header: [%s]", header);