mirror of
https://github.com/curl/curl.git
synced 2026-07-23 19:47:17 +03:00
multi: change prefix for the network change bits to CURLMNWC_
Because "CURLM_" is used for curl multi error codes and it is convenient to use the prefix to identify the number family. Closes #18176
This commit is contained in:
parent
96ff6b98b4
commit
3689ef21bd
5 changed files with 27 additions and 27 deletions
|
|
@ -403,15 +403,15 @@ typedef enum {
|
|||
|
||||
/* Definition of bits for the CURLMOPT_NETWORK_CHANGED argument: */
|
||||
|
||||
/* - CURLM_NWCOPT_CLEAR_CONNS tells libcurl to prevent further reuse
|
||||
of existing connections. Connections that are idle will be closed.
|
||||
Ongoing transfers will continue with the connection they have. */
|
||||
#define CURLM_NWCOPT_CLEAR_CONNS (1L<<0)
|
||||
/* - CURLMNWC_CLEAR_CONNS tells libcurl to prevent further reuse of existing
|
||||
connections. Connections that are idle will be closed. Ongoing transfers
|
||||
will continue with the connection they have. */
|
||||
#define CURLMNWC_CLEAR_CONNS (1L<<0)
|
||||
|
||||
/* - CURLM_NWCOPT_CLEAR_DNS tells libcurl to prevent further reuse
|
||||
of existing connections. Connections that are idle will be closed.
|
||||
Ongoing transfers will continue with the connection they have. */
|
||||
#define CURLM_NWCOPT_CLEAR_DNS (1L<<0)
|
||||
/* - CURLMNWC_CLEAR_DNS tells libcurl to prevent further reuse of existing
|
||||
connections. Connections that are idle will be closed. Ongoing transfers
|
||||
will continue with the connection they have. */
|
||||
#define CURLMNWC_CLEAR_DNS (1L<<0)
|
||||
|
||||
/*
|
||||
* Name: curl_multi_setopt()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue