2014-06-17 02:26:53 +08:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
2023-01-02 20:51:48 +08:00
|
|
|
.\" * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2014-06-17 02:26:53 +08:00
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
.\" * are also available at https://curl.se/docs/copyright.html.
|
2014-06-17 02:26:53 +08:00
|
|
|
.\" *
|
|
|
|
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
.\" * copies of the Software, and permit persons to whom the Software is
|
|
|
|
.\" * furnished to do so, under the terms of the COPYING file.
|
|
|
|
.\" *
|
|
|
|
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
.\" * KIND, either express or implied.
|
|
|
|
.\" *
|
|
|
|
.\" * SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
.\" *
|
2014-06-17 02:26:53 +08:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\"
|
2023-04-26 14:58:35 +08:00
|
|
|
.TH CURLOPT_NOPROGRESS 3 "16 Jun 2014" libcurl libcurl
|
2014-06-17 02:26:53 +08:00
|
|
|
.SH NAME
|
|
|
|
CURLOPT_NOPROGRESS \- switch off the progress meter
|
|
|
|
.SH SYNOPSIS
|
2021-11-26 21:20:18 +08:00
|
|
|
.nf
|
2014-06-17 02:26:53 +08:00
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_NOPROGRESS, long onoff);
|
2021-11-26 21:20:18 +08:00
|
|
|
.fi
|
2014-06-17 02:26:53 +08:00
|
|
|
.SH DESCRIPTION
|
|
|
|
If \fIonoff\fP is to 1, it tells the library to shut off the progress meter
|
|
|
|
completely for requests done with this \fIhandle\fP. It will also prevent the
|
2017-10-09 22:24:19 +08:00
|
|
|
\fICURLOPT_XFERINFOFUNCTION(3)\fP or \fICURLOPT_PROGRESSFUNCTION(3)\fP from
|
|
|
|
getting called.
|
2014-06-24 06:00:34 +08:00
|
|
|
.SH DEFAULT
|
|
|
|
1, meaning it normally runs without a progress meter.
|
2016-03-07 06:14:02 +08:00
|
|
|
.SH PROTOCOLS
|
|
|
|
All
|
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
|
|
|
CURL *curl = curl_easy_init();
|
|
|
|
if(curl) {
|
2020-09-17 05:04:07 +08:00
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
|
2016-03-07 06:14:02 +08:00
|
|
|
|
|
|
|
/* enable progress meter */
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L);
|
|
|
|
|
|
|
|
/* Perform the request */
|
|
|
|
curl_easy_perform(curl);
|
|
|
|
}
|
|
|
|
.fi
|
|
|
|
.SH AVAILABILITY
|
|
|
|
Always
|
2014-06-24 06:00:34 +08:00
|
|
|
.SH RETURN VALUE
|
|
|
|
Returns CURLE_OK.
|
2014-06-17 02:26:53 +08:00
|
|
|
.SH "SEE ALSO"
|
2017-10-09 22:24:19 +08:00
|
|
|
.BR CURLOPT_XFERINFOFUNCTION "(3), "
|
2014-06-17 02:26:53 +08:00
|
|
|
.BR CURLOPT_PROGRESSFUNCTION "(3), "
|
2017-10-09 22:24:19 +08:00
|
|
|
.BR CURLOPT_VERBOSE "(3), "
|