System.Curl.CURLMcode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

CURLMcode = (
CURLM_CALL_MULTI_PERFORM = -1, { please call curl_multi_perform() or curl_multi_socket*() soon }
CURLM_OK,
CURLM_BAD_HANDLE,      { the passed-in handle is not a valid CURLM handle }
CURLM_BAD_EASY_HANDLE, { an easy handle was not good/valid }
CURLM_OUT_OF_MEMORY,   { if you ever get this, you're in deep sh*t }
CURLM_INTERNAL_ERROR,  { this is a libcurl bug }
CURLM_BAD_SOCKET,      { the passed in socket argument did not match }
CURLM_UNKNOWN_OPTION,  { curl_multi_setopt() with unsupported option }
CURLM_ADDED_ALREADY,   { an easy handle already added to a multi handle was attempted to get added - again }
CURLM_LAST
);

C++

enum DECLSPEC_DENUM CURLMcode: signed char { CURLM_CALL_MULTI_PERFORM = -1, CURLM_OK, CURLM_BAD_HANDLE, CURLM_BAD_EASY_HANDLE, CURLM_OUT_OF_MEMORY, CURLM_INTERNAL_ERROR, CURLM_BAD_SOCKET, CURLM_UNKNOWN_OPTION, CURLM_ADDED_ALREADY, CURLM_LAST };

Properties

Type Visibility Source Unit Parent
enum public
System.Curl.pas
System.Curl.hpp
System.Curl System.Curl

Description

Embarcadero Technologies does not currently have any additional information.