curl_easy_send.3
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:3k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. ." **************************************************************************
  2. ." *                                  _   _ ____  _
  3. ." *  Project                     ___| | | |  _ | |
  4. ." *                             / __| | | | |_) | |
  5. ." *                            | (__| |_| |  _ <| |___
  6. ." *                             ___|___/|_| ______|
  7. ." *
  8. ." * Copyright (C) 1998 - 2008, 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. ." * $Id: curl_easy_send.3,v 1.1 2008-05-12 21:43:28 bagder Exp $
  22. ." **************************************************************************
  23. ."
  24. .TH curl_easy_send 3 "29 April 2008" "libcurl 7.18.2" "libcurl Manual"
  25. .SH NAME
  26. curl_easy_send - sends raw data over an "easy" connection 
  27. .SH SYNOPSIS
  28. .B #include <curl/easy.h>
  29. .sp
  30. .BI "CURLcode curl_easy_send( CURL *" curl ", const void *" buffer ","
  31. .BI " size_t " buflen ", size_t *" n ");"
  32. .ad
  33. .SH DESCRIPTION
  34. This function sends arbitrary data over the established connection. You may
  35. use it together with fIcurl_easy_recv(3)fP to implement custom protocols
  36. using libcurl. This functionality can be particularly useful if you use
  37. proxies and/or SSL encryption: libcurl will take care of proxy negotiation and
  38. connection set-up.
  39. fBbufferfP is a pointer to the data of length fBbuflenfP that you want sent.
  40. The variable fBnfP points to will receive the number of sent bytes.
  41. To establish the connection, set fBCURLOPT_CONNECT_ONLYfP option before
  42. calling fIcurl_easy_perform(3)fP. Note that fIcurl_easy_send(3)fP will not
  43. work on connections that were created without this option.
  44. You must ensure that the socket is writable before calling
  45. fIcurl_easy_send(3)fP, otherwise the call will return fBCURLE_AGAINfP -
  46. the socket is used in non-blocking mode internally. Use
  47. fIcurl_easy_getinfo(3)fP with fBCURLINFO_LASTSOCKETfP to obtain the
  48. socket; use your operating system facilities like fIselect(2)fP to check if
  49. it can be written to.
  50. .SH AVAILABILITY
  51. Added in 7.18.2.
  52. .SH RETURN VALUE
  53. On success, returns fBCURLE_OKfP and stores the number of bytes actually
  54. sent into fB*nfP. Note that this may very well be less than the amount you
  55. wanted to send.
  56. On failure, returns the appropriate error code.
  57. .SH EXAMPLE
  58. See fBsendrecv.cfP in fBdocs/examplesfP directory for usage example.
  59. .SH "SEE ALSO"
  60. .BR curl_easy_setopt "(3), " curl_easy_perform "(3), " curl_easy_getinfo "(3), "
  61. .BR curl_easy_recv "(3) "