Lines Matching +full:- +full:- +full:disable +full:- +full:tftp
21 * SPDX-License-Identifier: curl
73 return "A requested feature, protocol or option was not found built-in in" in curl_easy_strerror()
74 " this libcurl due to a build-time decision."; in curl_easy_strerror()
224 return "Unrecognized or bad HTTP Content or Transfer-Encoding"; in curl_easy_strerror()
248 return "TFTP: File Not Found"; in curl_easy_strerror()
251 return "TFTP: Access Violation"; in curl_easy_strerror()
257 return "TFTP: Illegal operation"; in curl_easy_strerror()
260 return "TFTP: Unknown transfer ID"; in curl_easy_strerror()
266 return "TFTP: No such user"; in curl_easy_strerror()
346 * By using a switch, gcc -Wall will complain about enum values in curl_easy_strerror()
347 * which do not appear, helping keep this function up-to-date. in curl_easy_strerror()
348 * By using gcc -Wall -Werror, you can't forget. in curl_easy_strerror()
750 /* Non-Authoritative: Host not found, or SERVERFAIL */ in get_winsock_error()
796 FormatMessageW -> wcstombs is used for Windows CE compatibility. */ in get_winapi_error()
800 size_t written = wcstombs(buf, wbuf, buflen - 1); in get_winapi_error()
801 if(written != (size_t)-1) in get_winapi_error()
810 if(p > buf && *(p-1) == '\r') in get_winapi_error()
811 *(p-1) = '\0'; in get_winapi_error()
821 * Our thread-safe and smart strerror() replacement.
825 * we pass it to the "number-to-message" conversion function and there might
875 * The POSIX-style strerror_r() may set errno to ERANGE if insufficient in Curl_strerror()
885 * The glibc-style strerror_r() only *might* use the buffer we pass to in Curl_strerror()
887 * so we must copy that string unconditionally (if non-NULL). in Curl_strerror()
899 /* !checksrc! disable STRERROR 1 */ in Curl_strerror()
912 if(p && (p - buf) >= 2) in Curl_strerror()
915 if(p && (p - buf) >= 1) in Curl_strerror()
1085 "SEC_E_ILLEGAL_MESSAGE (0x%08X) - This error usually occurs " in Curl_sspi_strerror()
1093 msnprintf(buf, buflen, "%s (0x%08X) - %s", txt, err, msgbuf); in Curl_sspi_strerror()