options.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #ifndef CURLINC_OPTIONS_H
  2. #define CURLINC_OPTIONS_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 2018 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.haxx.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. ***************************************************************************/
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. typedef enum {
  28. CURLOT_LONG, /* long (a range of values) */
  29. CURLOT_VALUES, /* (a defined set or bitmask) */
  30. CURLOT_OFF_T, /* curl_off_t (a range of values) */
  31. CURLOT_OBJECT, /* pointer (void *) */
  32. CURLOT_STRING, /* (char * to zero terminated buffer) */
  33. CURLOT_SLIST, /* (struct curl_slist *) */
  34. CURLOT_CBPTR, /* (void * passed as-is to a callback) */
  35. CURLOT_BLOB, /* blob (struct curl_blob *) */
  36. CURLOT_FUNCTION /* function pointer */
  37. } curl_easytype;
  38. /* Flag bits */
  39. /* "alias" means it is provided for old programs to remain functional,
  40. we prefer another name */
  41. #define CURLOT_FLAG_ALIAS (1<<0)
  42. /* The CURLOPTTYPE_* id ranges can still be used to figure out what type/size
  43. to use for curl_easy_setopt() for the given id */
  44. struct curl_easyoption {
  45. const char *name;
  46. CURLoption id;
  47. curl_easytype type;
  48. unsigned int flags;
  49. };
  50. CURL_EXTERN const struct curl_easyoption *
  51. curl_easy_option_by_name(const char *name);
  52. CURL_EXTERN const struct curl_easyoption *
  53. curl_easy_option_by_id (CURLoption id);
  54. CURL_EXTERN const struct curl_easyoption *
  55. curl_easy_option_next(const struct curl_easyoption *prev);
  56. #ifdef __cplusplus
  57. } /* end of extern "C" */
  58. #endif
  59. #endif /* CURLINC_OPTIONS_H */