diff options
author | Seonah Moon <seonah1.moon@samsung.com> | 2019-12-12 13:26:58 +0900 |
---|---|---|
committer | Niraj Kumar Goit <niraj.g@samsung.com> | 2021-08-17 18:04:03 +0530 |
commit | 9437375a9c45d1898a5af17447396a3d4fdd288b (patch) | |
tree | 47e50d530033f248b667e44eab2192c3050379a6 | |
parent | ae975da5d44395a7ce55db052550afbe68e3a504 (diff) | |
download | curl-accepted/tizen_5.0_base.tar.gz curl-accepted/tizen_5.0_base.tar.bz2 curl-accepted/tizen_5.0_base.zip |
Change HAPPY_EYEBALLS_DNS_TIMEOUT to 1 sec for TV profilesubmit/tizen_5.0_base/20210818.035823accepted/tizen/5.0/base/20210818.091335tizen_5.0_baseaccepted/tizen_5.0_base
Change-Id: I8f29a511322905036005cf8df13640518c6be7bc
-rw-r--r-- | lib/asyn-ares.c | 4 | ||||
-rw-r--r-- | packaging/curl.spec | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/asyn-ares.c b/lib/asyn-ares.c index e66c9a68e..0c839cdf4 100644 --- a/lib/asyn-ares.c +++ b/lib/asyn-ares.c @@ -104,7 +104,11 @@ struct ResolverResults { its API, but it is officially documented as 5 seconds. See query_completed_cb() for an explanation of how this is used. */ +#ifndef TIZEN_TV_EXT #define HAPPY_EYEBALLS_DNS_TIMEOUT 5000 +#else +#define HAPPY_EYEBALLS_DNS_TIMEOUT 1000 +#endif /* * Curl_resolver_global_init() - the generic low-level asynchronous name diff --git a/packaging/curl.spec b/packaging/curl.spec index 650d7c366..0a1733774 100644 --- a/packaging/curl.spec +++ b/packaging/curl.spec @@ -1,7 +1,7 @@ Name: curl Summary: A utility for getting files from remote servers (FTP, HTTP, and others) Version: 7.59.0 -Release: 4 +Release: 5 Group: Applications/Internet License: MIT URL: http://curl.haxx.se/ |