X-Git-Url: https://git.saurik.com/apt-legacy.git/blobdiff_plain/032f992c5ed1130c348c7ddd074cde239e09cc87..f23a31abf292fafa4e46772d15cf65e98042e6c9:/methods/http.cc diff --git a/methods/http.cc b/methods/http.cc index 2819ae1..1a7e7c9 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -1125,17 +1125,6 @@ int HttpMethod::Loop() URI uri = std::string(url); std::string hs = uri.Host; -#if __ENVIRONMENT_ASPEN_VERSION_MIN_REQUIRED__ >= 10200 - struct hostent *he = gethostbyname(hs.c_str()); - if (he == NULL || he->h_addr_list[0] == NULL) { - _error->Error(hstrerror(h_errno)); - Fail(true); - free(url); - } - - uri.Host = inet_ntoa(* (struct in_addr *) he->h_addr_list[0]); -#endif - std::string urs = uri; CFStringRef sr = CFStringCreateWithCString(kCFAllocatorDefault, urs.c_str(), se); @@ -1172,12 +1161,6 @@ int HttpMethod::Loop() CFHTTPMessageSetHeaderFieldValue(hm, CFSTR("User-Agent"), CFSTR("Telesphoreo APT-HTTP/1.0.98")); -#if __ENVIRONMENT_ASPEN_VERSION_MIN_REQUIRED__ >= 10200 - sr = CFStringCreateWithCString(kCFAllocatorDefault, hs.c_str(), se); - CFHTTPMessageSetHeaderFieldValue(hm, CFSTR("Host"), sr); - CFRelease(sr); -#endif - CFReadStreamRef rs = CFReadStreamCreateForHTTPRequest(kCFAllocatorDefault, hm); CFRelease(hm);