Home | History | Annotate | Download | only in lib

Lines Matching refs:rtspc

184   conn->proto.rtspc.rtp_channel = -1;
192 Curl_safefree(conn->proto.rtspc.rtp_buf);
223 (conn->proto.rtspc.rtp_channel == -1)) {
609 struct rtsp_conn *rtspc = &(conn->proto.rtspc);
616 if(rtspc->rtp_buf) {
618 char *newptr = Curl_saferealloc(rtspc->rtp_buf,
619 rtspc->rtp_bufsize + *nread);
621 rtspc->rtp_buf = NULL;
622 rtspc->rtp_bufsize = 0;
625 rtspc->rtp_buf = newptr;
626 memcpy(rtspc->rtp_buf + rtspc->rtp_bufsize, k->str, *nread);
627 rtspc->rtp_bufsize += *nread;
628 rtp = rtspc->rtp_buf;
629 rtp_dataleft = rtspc->rtp_bufsize;
644 rtspc->rtp_channel = RTP_PKT_CHANNEL(rtp);
658 rtspc->rtp_channel, rtp_length));
663 Curl_safefree(rtspc->rtp_buf);
664 rtspc->rtp_buf = NULL;
665 rtspc->rtp_bufsize = 0;
695 Curl_safefree(rtspc->rtp_buf);
696 rtspc->rtp_buf = NULL;
697 rtspc->rtp_bufsize = 0;
701 Curl_safefree(rtspc->rtp_buf);
702 rtspc->rtp_buf = scratch;
703 rtspc->rtp_bufsize = rtp_dataleft;
725 Curl_safefree(rtspc->rtp_buf);
726 rtspc->rtp_buf = NULL;
727 rtspc->rtp_bufsize = 0;