Home | History | Annotate | Download | only in lib

Lines Matching refs:CSeq

48  *      -server CSeq counter
178 /* Initialize the CSeq if not already done */
218 "The CSeq of this request %ld did not match the response %ld",
224 infof(data, "Got an RTP Receive with a CSeq of %ld\n", CSeq_recv);
433 if(Curl_checkheaders(conn, "CSeq:")) {
434 failf(data, "CSeq cannot be set as a custom header.");
451 "CSeq: %ld\r\n", /* CSeq */
589 /* Increment the CSeq on success */
764 long CSeq = 0;
766 if(checkprefix("CSeq:", header)) {
767 /* Store the received CSeq. Match is verified in rtsp_done */
768 int nc = sscanf(&header[4], ": %ld", &CSeq);
771 rtsp->CSeq_recv = CSeq; /* mark the request */
772 data->state.rtsp_CSeq_recv = CSeq; /* update the handle */
775 failf(data, "Unable to read the CSeq header: [%s]", header);