Skip to content

Commit f9b63c1

Browse files
committed
Add. New options from libcurl 7.60.0
1 parent 185a03e commit f9b63c1

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ shallow_clone: true
77

88
environment:
99
LR_EXTERNAL: c:\external
10-
CURL_VER: 7.59.0
10+
CURL_VER: 7.60.0
1111

1212
matrix:
1313
- LUA: "lua 5.1"

msvc/lcurl.sln

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11

2-
Microsoft Visual Studio Solution File, Format Version 10.00
3-
# Visual Studio 2008
4-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lcurl", "lcurl.vcproj", "{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}"
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lcurl", "lcurl.vcxproj", "{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}"
57
EndProject
68
Global
79
GlobalSection(SolutionConfigurationPlatforms) = preSolution
810
Debug|Win32 = Debug|Win32
11+
Debug|x64 = Debug|x64
912
Release|Win32 = Release|Win32
13+
Release|x64 = Release|x64
1014
EndGlobalSection
1115
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1216
{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}.Debug|Win32.ActiveCfg = Debug|Win32
1317
{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}.Debug|Win32.Build.0 = Debug|Win32
18+
{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}.Debug|x64.ActiveCfg = Debug|x64
19+
{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}.Debug|x64.Build.0 = Debug|x64
1420
{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}.Release|Win32.ActiveCfg = Release|Win32
1521
{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}.Release|Win32.Build.0 = Release|Win32
22+
{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}.Release|x64.ActiveCfg = Release|x64
23+
{200D5C0C-8123-48F6-9EA0-CF0E6A6943F2}.Release|x64.Build.0 = Release|x64
1624
EndGlobalSection
1725
GlobalSection(SolutionProperties) = preSolution
1826
HideSolutionNode = FALSE

src/lcopteasy.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,11 @@ OPT_ENTRY( happy_eyeballs_timeout_ms,HAPPY_EYEBALLS_TIMEOUT_MS,LNG, 0, CURL_HET_
439439
OPT_ENTRY( timevalue_large, TIMEVALUE_LARGE ,OFF, 0, LCURL_DEFAULT_VALUE)
440440
#endif
441441

442+
#if LCURL_CURL_VER_GE(7,60,0)
443+
OPT_ENTRY(dns_shuffle_addresses, DNS_SHUFFLE_ADDRESSES, LNG, 0, LCURL_DEFAULT_VALUE)
444+
OPT_ENTRY(haproxyprotocol, HAPROXYPROTOCOL, LNG, 0, LCURL_DEFAULT_VALUE)
445+
#endif
446+
442447
//{ Restore system macros
443448

444449
#ifdef LCURL__TCP_FASTOPEN

0 commit comments

Comments
 (0)