diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-01-22 12:17:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-01-22 12:17:03 +0000 |
commit | 844c19cc5b5a62e572f4fb9e00c5c6a61c2fb581 (patch) | |
tree | 631e3035f49b1f18ac49cdb1121677d52230d804 /lib | |
parent | 4a8570313aa22d9d1b78e1e4d8ce01239a2021c7 (diff) |
s/RTPFUNCTION/INTERLEAVEFUNCTION/
s/RTPDATA/INTERLEAVEDATA/
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2430,10 +2430,10 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, data->state.rtsp_next_client_CSeq = va_arg(param, long); break; - case CURLOPT_RTPDATA: + case CURLOPT_INTERLEAVEDATA: data->set.rtp_out = va_arg(param, void *); break; - case CURLOPT_RTPFUNCTION: + case CURLOPT_INTERLEAVEFUNCTION: /* Set the user defined RTP write function */ data->set.fwrite_rtp = va_arg(param, curl_write_callback); break; |