diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-03-14 22:52:14 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-03-14 22:52:14 +0100 |
commit | 13b64d75589647f8d151e035bd2c5d340a1c37ee (patch) | |
tree | 9c34a261f8803232da1b93836d2fa7b4e33db4b4 /lib/curl_rtmp.c | |
parent | 8831000bc07de463d277975a3ddfb6a31dcf14b4 (diff) | |
download | curl-13b64d75589647f8d151e035bd2c5d340a1c37ee.tar.gz |
protocols: use CURLPROTO_ internally
The PROT_* set of internal defines for the protocols is no longer
used. We now use the same bits internally as we have defined in the
public header using the CURLPROTO_ prefix. This is for simplicity and
because the PROT_* prefix was already used duplicated internally for a
set of KRB4 values.
The PROTOPT_* defines were moved up to just below the struct definition
within which they are used.
Diffstat (limited to 'lib/curl_rtmp.c')
-rw-r--r-- | lib/curl_rtmp.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/curl_rtmp.c b/lib/curl_rtmp.c index 183db0ded..bae8a76c0 100644 --- a/lib/curl_rtmp.c +++ b/lib/curl_rtmp.c @@ -74,7 +74,7 @@ const struct Curl_handler Curl_handler_rtmp = { ZERO_NULL, /* perform_getsock */ rtmp_disconnect, /* disconnect */ PORT_RTMP, /* defport */ - PROT_RTMP, /* protocol */ + CURLPROTO_RTMP, /* protocol */ PROTOPT_NONE /* flags*/ }; @@ -92,7 +92,7 @@ const struct Curl_handler Curl_handler_rtmpt = { ZERO_NULL, /* perform_getsock */ rtmp_disconnect, /* disconnect */ PORT_RTMPT, /* defport */ - PROT_RTMPT, /* protocol */ + CURLPROTO_RTMPT, /* protocol */ PROTOPT_NONE /* flags*/ }; @@ -110,7 +110,7 @@ const struct Curl_handler Curl_handler_rtmpe = { ZERO_NULL, /* perform_getsock */ rtmp_disconnect, /* disconnect */ PORT_RTMP, /* defport */ - PROT_RTMPE, /* protocol */ + CURLPROTO_RTMPE, /* protocol */ PROTOPT_NONE /* flags*/ }; @@ -128,7 +128,7 @@ const struct Curl_handler Curl_handler_rtmpte = { ZERO_NULL, /* perform_getsock */ rtmp_disconnect, /* disconnect */ PORT_RTMPT, /* defport */ - PROT_RTMPTE, /* protocol */ + CURLPROTO_RTMPTE, /* protocol */ PROTOPT_NONE /* flags*/ }; @@ -146,7 +146,7 @@ const struct Curl_handler Curl_handler_rtmps = { ZERO_NULL, /* perform_getsock */ rtmp_disconnect, /* disconnect */ PORT_RTMPS, /* defport */ - PROT_RTMPS, /* protocol */ + CURLPROTO_RTMPS, /* protocol */ PROTOPT_NONE /* flags*/ }; const struct Curl_handler Curl_handler_rtmpts = { @@ -163,7 +163,7 @@ const struct Curl_handler Curl_handler_rtmpts = { ZERO_NULL, /* perform_getsock */ rtmp_disconnect, /* disconnect */ PORT_RTMPS, /* defport */ - PROT_RTMPTS, /* protocol */ + CURLPROTO_RTMPTS, /* protocol */ PROTOPT_NONE /* flags*/ }; |