2018-08-05 17:51:07 +08:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
2023-01-02 20:51:48 +08:00
|
|
|
.\" * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2018-08-05 17:51:07 +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.
|
2018-08-05 17:51:07 +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.
|
|
|
|
.\" *
|
2022-05-17 17:16:50 +08:00
|
|
|
.\" * SPDX-License-Identifier: curl
|
|
|
|
.\" *
|
2018-08-05 17:51:07 +08:00
|
|
|
.\" **************************************************************************
|
2023-04-26 14:58:35 +08:00
|
|
|
.TH curl_url_cleanup 3 "6 Aug 2018" "libcurl" "libcurl"
|
2018-08-05 17:51:07 +08:00
|
|
|
.SH NAME
|
2022-09-21 05:30:19 +08:00
|
|
|
curl_url_cleanup - free the URL handle
|
2018-08-05 17:51:07 +08:00
|
|
|
.SH SYNOPSIS
|
2021-11-26 21:20:18 +08:00
|
|
|
.nf
|
|
|
|
#include <curl/curl.h>
|
2018-08-05 17:51:07 +08:00
|
|
|
|
|
|
|
void curl_url_cleanup(CURLU *handle);
|
|
|
|
.fi
|
|
|
|
.SH DESCRIPTION
|
2022-09-21 05:30:19 +08:00
|
|
|
Frees all the resources associated with the given \fICURLU\fP handle!
|
2023-05-19 09:34:07 +08:00
|
|
|
|
2023-08-22 17:26:05 +08:00
|
|
|
Passing in a NULL pointer in \fIhandle\fP makes this function return
|
2023-05-19 09:34:07 +08:00
|
|
|
immediately with no action.
|
2018-08-05 17:51:07 +08:00
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
|
|
|
CURLU *url = curl_url();
|
|
|
|
curl_url_set(url, CURLUPART_URL, "https://example.com", 0);
|
|
|
|
curl_url_cleanup(url);
|
|
|
|
.fi
|
|
|
|
.SH AVAILABILITY
|
2021-10-25 17:45:09 +08:00
|
|
|
Added in 7.62.0
|
2021-10-25 14:54:08 +08:00
|
|
|
.SH RETURN VALUE
|
|
|
|
none
|
2018-08-05 17:51:07 +08:00
|
|
|
.SH "SEE ALSO"
|
2023-09-27 05:25:11 +08:00
|
|
|
.BR curl_url_dup (3),
|
|
|
|
.BR curl_url (3),
|
|
|
|
.BR curl_url_set (3),
|
|
|
|
.BR curl_url_get (3),
|
|
|
|
.BR CURLOPT_CURLU (3)
|