diff options
author | Howard Chu <hyc@highlandsun.com> | 2010-05-12 23:07:20 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-05-12 23:07:20 +0200 |
commit | 04cb15ae9dc0e863487ee55de2226cf5033311c0 (patch) | |
tree | bce4eb1a51164342cf35ba456a225fc1fefa9766 /lib/curl_rtmp.h | |
parent | bc8fc9803fbd0fa9daf0dba796d42d03faf49120 (diff) | |
download | curl-04cb15ae9dc0e863487ee55de2226cf5033311c0.tar.gz |
RTMP: initial support added, powered by librtmp
librtmp is found at http://rtmpdump.mplayerhq.hu/
Diffstat (limited to 'lib/curl_rtmp.h')
-rw-r--r-- | lib/curl_rtmp.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/curl_rtmp.h b/lib/curl_rtmp.h new file mode 100644 index 000000000..35776aaa6 --- /dev/null +++ b/lib/curl_rtmp.h @@ -0,0 +1,34 @@ +#ifndef __CURL_RTMP_H +#define __CURL_RTMP_H + +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 2010, Howard Chu, <hyc@highlandsun.com> + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ +#ifndef CURL_DISABLE_RTMP +extern const struct Curl_handler Curl_handler_rtmp; +extern const struct Curl_handler Curl_handler_rtmpt; +extern const struct Curl_handler Curl_handler_rtmpe; +extern const struct Curl_handler Curl_handler_rtmpte; +extern const struct Curl_handler Curl_handler_rtmps; +extern const struct Curl_handler Curl_handler_rtmpts; +#endif + +#endif /* __CURL_RTMP_H */ |