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 /include | |
parent | bc8fc9803fbd0fa9daf0dba796d42d03faf49120 (diff) |
RTMP: initial support added, powered by librtmp
librtmp is found at http://rtmpdump.mplayerhq.hu/
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index e63596828..802136690 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -623,6 +623,12 @@ typedef enum { #define CURLPROTO_SMTP (1<<16) #define CURLPROTO_SMTPS (1<<17) #define CURLPROTO_RTSP (1<<18) +#define CURLPROTO_RTMP (1<<19) +#define CURLPROTO_RTMPT (1<<20) +#define CURLPROTO_RTMPE (1<<21) +#define CURLPROTO_RTMPTE (1<<22) +#define CURLPROTO_RTMPS (1<<23) +#define CURLPROTO_RTMPTS (1<<24) #define CURLPROTO_ALL (~0) /* enable everything */ /* long may be 32 or 64 bits, but we should never depend on anything else |