tool_cb_hdr.h
Go to the documentation of this file.
00001 #ifndef HEADER_CURL_TOOL_CB_HDR_H
00002 #define HEADER_CURL_TOOL_CB_HDR_H
00003 /***************************************************************************
00004  *                                  _   _ ____  _
00005  *  Project                     ___| | | |  _ \| |
00006  *                             / __| | | | |_) | |
00007  *                            | (__| |_| |  _ <| |___
00008  *                             \___|\___/|_| \_\_____|
00009  *
00010  * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
00011  *
00012  * This software is licensed as described in the file COPYING, which
00013  * you should have received as part of this distribution. The terms
00014  * are also available at https://curl.haxx.se/docs/copyright.html.
00015  *
00016  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
00017  * copies of the Software, and permit persons to whom the Software is
00018  * furnished to do so, under the terms of the COPYING file.
00019  *
00020  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
00021  * KIND, either express or implied.
00022  *
00023  ***************************************************************************/
00024 #include "tool_setup.h"
00025 
00026 /*
00027  * curl operates using a single HdrCbData struct variable, a
00028  * pointer to this is passed as userdata pointer to tool_header_cb.
00029  *
00030  * 'outs' member is a pointer to the OutStruct variable used to keep
00031  * track of information relative to curl's output writing.
00032  *
00033  * 'heads' member is a pointer to the OutStruct variable used to keep
00034  * track of information relative to header response writing.
00035  *
00036  * 'honor_cd_filename' member is TRUE when tool_header_cb is allowed
00037  * to honor Content-Disposition filename property and accordingly
00038  * set 'outs' filename, otherwise FALSE;
00039  */
00040 
00041 struct HdrCbData {
00042   struct OutStruct *outs;
00043   struct OutStruct *heads;
00044   bool honor_cd_filename;
00045 };
00046 
00047 /*
00048 ** callback for CURLOPT_HEADERFUNCTION
00049 */
00050 
00051 size_t tool_header_cb(void *ptr, size_t size, size_t nmemb, void *userdata);
00052 
00053 #endif /* HEADER_CURL_TOOL_CB_HDR_H */
00054 


rc_visard_driver
Author(s): Heiko Hirschmueller , Christian Emmerich , Felix Ruess
autogenerated on Thu Jun 6 2019 20:43:06