Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/curl
File: curlver.h
#ifndef __CURL_CURLVER_H
[0] Fix | Delete
#define __CURL_CURLVER_H
[1] Fix | Delete
/***************************************************************************
[2] Fix | Delete
* _ _ ____ _
[3] Fix | Delete
* Project ___| | | | _ \| |
[4] Fix | Delete
* / __| | | | |_) | |
[5] Fix | Delete
* | (__| |_| | _ <| |___
[6] Fix | Delete
* \___|\___/|_| \_\_____|
[7] Fix | Delete
*
[8] Fix | Delete
* Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
[9] Fix | Delete
*
[10] Fix | Delete
* This software is licensed as described in the file COPYING, which
[11] Fix | Delete
* you should have received as part of this distribution. The terms
[12] Fix | Delete
* are also available at https://curl.haxx.se/docs/copyright.html.
[13] Fix | Delete
*
[14] Fix | Delete
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
[15] Fix | Delete
* copies of the Software, and permit persons to whom the Software is
[16] Fix | Delete
* furnished to do so, under the terms of the COPYING file.
[17] Fix | Delete
*
[18] Fix | Delete
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
[19] Fix | Delete
* KIND, either express or implied.
[20] Fix | Delete
*
[21] Fix | Delete
***************************************************************************/
[22] Fix | Delete
[23] Fix | Delete
/* This header file contains nothing but libcurl version info, generated by
[24] Fix | Delete
a script at release-time. This was made its own header file in 7.11.2 */
[25] Fix | Delete
[26] Fix | Delete
/* This is the global package copyright */
[27] Fix | Delete
#define LIBCURL_COPYRIGHT "1996 - 2018 Daniel Stenberg, <daniel@haxx.se>."
[28] Fix | Delete
[29] Fix | Delete
/* This is the version number of the libcurl package from which this header
[30] Fix | Delete
file origins: */
[31] Fix | Delete
#define LIBCURL_VERSION "7.61.1"
[32] Fix | Delete
[33] Fix | Delete
/* The numeric version number is also available "in parts" by using these
[34] Fix | Delete
defines: */
[35] Fix | Delete
#define LIBCURL_VERSION_MAJOR 7
[36] Fix | Delete
#define LIBCURL_VERSION_MINOR 61
[37] Fix | Delete
#define LIBCURL_VERSION_PATCH 1
[38] Fix | Delete
[39] Fix | Delete
/* This is the numeric version of the libcurl version number, meant for easier
[40] Fix | Delete
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
[41] Fix | Delete
always follow this syntax:
[42] Fix | Delete
[43] Fix | Delete
0xXXYYZZ
[44] Fix | Delete
[45] Fix | Delete
Where XX, YY and ZZ are the main version, release and patch numbers in
[46] Fix | Delete
hexadecimal (using 8 bits each). All three numbers are always represented
[47] Fix | Delete
using two digits. 1.2 would appear as "0x010200" while version 9.11.7
[48] Fix | Delete
appears as "0x090b07".
[49] Fix | Delete
[50] Fix | Delete
This 6-digit (24 bits) hexadecimal number does not show pre-release number,
[51] Fix | Delete
and it is always a greater number in a more recent release. It makes
[52] Fix | Delete
comparisons with greater than and less than work.
[53] Fix | Delete
[54] Fix | Delete
Note: This define is the full hex number and _does not_ use the
[55] Fix | Delete
CURL_VERSION_BITS() macro since curl's own configure script greps for it
[56] Fix | Delete
and needs it to contain the full number.
[57] Fix | Delete
*/
[58] Fix | Delete
#define LIBCURL_VERSION_NUM 0x073d01
[59] Fix | Delete
[60] Fix | Delete
/*
[61] Fix | Delete
* This is the date and time when the full source package was created. The
[62] Fix | Delete
* timestamp is not stored in git, as the timestamp is properly set in the
[63] Fix | Delete
* tarballs by the maketgz script.
[64] Fix | Delete
*
[65] Fix | Delete
* The format of the date follows this template:
[66] Fix | Delete
*
[67] Fix | Delete
* "2007-11-23"
[68] Fix | Delete
*/
[69] Fix | Delete
#define LIBCURL_TIMESTAMP "2018-09-05"
[70] Fix | Delete
[71] Fix | Delete
#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|z)
[72] Fix | Delete
#define CURL_AT_LEAST_VERSION(x,y,z) \
[73] Fix | Delete
(LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))
[74] Fix | Delete
[75] Fix | Delete
#endif /* __CURL_CURLVER_H */
[76] Fix | Delete
[77] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function