Print

Print


@bbockelm commented on this pull request.



> +
+bool
+XrdTpcNSSSupport::NeedsNSSHack()
+{
+    const auto *version_info = curl_version_info(CURLVERSION_NOW);
+
+    if (!version_info->ssl_version) {return true;}
+    std::string ssl_version(version_info->ssl_version);
+
+    auto iter = ssl_version.find("NSS");
+    return iter != std::string::npos;
+}
+
+
+bool
+XrdTpcNSSSupport::Maintenance()

Done.  In the end, there were only two points where file descriptors were opened (the rest were just converting to things like `FILE*` and `DIR*`.

Necessitated the addition of a new `XrdSysFD_Openat` function; from a quick check of manpages, appears to be portable across the BSDs and Solaris so I kept it out of the Linux-specific block.

-- 
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
https://github.com/xrootd/xrootd/pull/1431#discussion_r602913520

########################################################################
Use REPLY-ALL to reply to list

To unsubscribe from the XROOTD-DEV list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=XROOTD-DEV&A=1