curl_global_init_mem.3 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at http://curl.haxx.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .TH curl_global_init_mem 3 "10 May 2004" "libcurl 7.12.0" "libcurl Manual"
  23. .SH NAME
  24. curl_global_init_mem - Global libcurl initialisation with memory callbacks
  25. .SH SYNOPSIS
  26. .B #include <curl/curl.h>
  27. .nf
  28. .B "CURLcode curl_global_init_mem(long " flags,
  29. .B " curl_malloc_callback "m,
  30. .B " curl_free_callback "f,
  31. .B " curl_realloc_callback "r,
  32. .B " curl_strdup_callback "s,
  33. .B " curl_calloc_callback "c ");"
  34. .SH DESCRIPTION
  35. This function works exactly as \fIcurl_global_init(3)\fP with one addition: it
  36. allows the application to set callbacks to replace the otherwise used internal
  37. memory functions.
  38. This man page only adds documentation for the callbacks, see the
  39. \fIcurl_global_init(3)\fP man page for all the rest. When you use this
  40. function, all callback arguments must be set to valid function pointers.
  41. The prototypes for the given callbacks should match these:
  42. .IP "void *malloc_callback(size_t size);"
  43. To replace malloc()
  44. .IP "void free_callback(void *ptr);"
  45. To replace free()
  46. .IP "void *realloc_callback(void *ptr, size_t size);"
  47. To replace realloc()
  48. .IP "char *strdup_callback(const char *str);"
  49. To replace strdup()
  50. .IP "void *calloc_callback(size_t nmemb, size_t size);"
  51. To replace calloc()
  52. .SH "CAUTION"
  53. Manipulating these gives considerable powers to the application to severely
  54. screw things up for libcurl. Take care!
  55. .SH "SEE ALSO"
  56. .BR curl_global_init "(3), "
  57. .BR curl_global_cleanup "(3), "