2001-05-28 10:11:02 -04:00
|
|
|
.\" You can view this file with:
|
|
|
|
.\" nroff -man [file]
|
|
|
|
.\" Written by daniel@haxx.se
|
|
|
|
.\"
|
2001-05-29 04:27:43 -04:00
|
|
|
.TH curl_global_init 3 "29 May 2001" "libcurl 7.8" "libcurl Manual"
|
2001-05-28 10:11:02 -04:00
|
|
|
.SH NAME
|
|
|
|
curl_global_init - Global libcurl initialisation
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B #include <curl/curl.h>
|
|
|
|
.sp
|
2001-05-29 04:27:43 -04:00
|
|
|
.BI "CURLcode curl_global_init(long " flags ");"
|
2001-05-28 10:11:02 -04:00
|
|
|
.ad
|
|
|
|
.SH DESCRIPTION
|
|
|
|
This function should be called once (no matter how many threads or libcurl
|
|
|
|
sessions that'll be used) by every application that uses libcurl.
|
|
|
|
|
|
|
|
If this function hasn't been invoked when \fIcurl_easy_init\fP is called, it
|
|
|
|
will be done automatically by libcurl.
|
|
|
|
|
2001-05-28 11:30:38 -04:00
|
|
|
The flags option should be set to zero. It will be used to tell libcurl what
|
|
|
|
specific features it should \fBnot\fP init.
|
|
|
|
|
2001-05-28 10:11:02 -04:00
|
|
|
You must however \fBalways\fP use the \fIcurl_global_cleanup\fP function, as
|
|
|
|
that cannot be called automatically for you by libcurl.
|
2001-05-29 04:27:43 -04:00
|
|
|
|
|
|
|
This function was added in libcurl 7.8.
|
2001-05-28 10:11:02 -04:00
|
|
|
.SH RETURN VALUE
|
|
|
|
If this function returns non-zero, something went wrong and you cannot use the
|
|
|
|
other curl functions.
|
|
|
|
.SH "SEE ALSO"
|
|
|
|
.BR curl_global_cleanup "(3), "
|
|
|
|
.SH BUGS
|
|
|
|
None.
|
|
|
|
|