]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
idn: remove Curl_win32_ascii_to_idn
authorDaniel Stenberg <daniel@haxx.se>
Wed, 14 Dec 2022 13:41:02 +0000 (14:41 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 15 Dec 2022 21:56:52 +0000 (22:56 +0100)
It was not used. Introduce a new IDN header for the prototype(s).

Closes #10094

lib/idn_win32.c
lib/idn_win32.h [new file with mode: 0644]
lib/url.c

index 4ebb6b773425d100901fba48ec1922aca0b9712d..b3088be6a075aac7810b57180ad2b458bbc9c4fd 100644 (file)
@@ -29,7 +29,7 @@
 #include "curl_setup.h"
 
 #ifdef USE_WIN32_IDN
-
+#include "idn_win32.h"
 #include "curl_multibyte.h"
 #include "curl_memory.h"
 #include "warnless.h"
@@ -52,9 +52,6 @@ WINBASEAPI int WINAPI IdnToUnicode(DWORD dwFlags,
 
 #define IDN_MAX_LENGTH 255
 
-bool Curl_win32_idn_to_ascii(const char *in, char **out);
-bool Curl_win32_ascii_to_idn(const char *in, char **out);
-
 bool Curl_win32_idn_to_ascii(const char *in, char **out)
 {
   bool success = FALSE;
@@ -78,29 +75,4 @@ bool Curl_win32_idn_to_ascii(const char *in, char **out)
   return success;
 }
 
-bool Curl_win32_ascii_to_idn(const char *in, char **out)
-{
-  bool success = FALSE;
-
-  wchar_t *in_w = curlx_convert_UTF8_to_wchar(in);
-  if(in_w) {
-    size_t in_len = wcslen(in_w) + 1;
-    wchar_t unicode[IDN_MAX_LENGTH];
-    int chars = IdnToUnicode(0, in_w, curlx_uztosi(in_len),
-                             unicode, IDN_MAX_LENGTH);
-    curlx_unicodefree(in_w);
-    if(chars) {
-      char *mstr = curlx_convert_wchar_to_UTF8(unicode);
-      if(mstr) {
-        *out = strdup(mstr);
-        curlx_unicodefree(mstr);
-        if(*out)
-          success = TRUE;
-      }
-    }
-  }
-
-  return success;
-}
-
 #endif /* USE_WIN32_IDN */
diff --git a/lib/idn_win32.h b/lib/idn_win32.h
new file mode 100644 (file)
index 0000000..8a76403
--- /dev/null
@@ -0,0 +1,32 @@
+#ifndef HEADER_CURL_IDN_WIN32_H
+#define HEADER_CURL_IDN_WIN32_H
+/***************************************************************************
+ *                                  _   _ ____  _
+ *  Project                     ___| | | |  _ \| |
+ *                             / __| | | | |_) | |
+ *                            | (__| |_| |  _ <| |___
+ *                             \___|\___/|_| \_\_____|
+ *
+ * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
+ *
+ * This software is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at https://curl.se/docs/copyright.html.
+ *
+ * You may opt to use, copy, modify, merge, publish, distribute and/or sell
+ * copies of the Software, and permit persons to whom the Software is
+ * furnished to do so, under the terms of the COPYING file.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ * SPDX-License-Identifier: curl
+ *
+ ***************************************************************************/
+
+#ifdef USE_WIN32_IDN
+
+bool Curl_win32_idn_to_ascii(const char *in, char **out);
+
+#endif /* USE_WIN32_IDN */
+#endif /* HEADER_CURL_IDN_WIN32_H */
index 0af812bcd1ec65badd22808e07fd1d8ea84f286b..4f88fa984630bafb23cd2c5709b1ca934c9030b5 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
 #define IDN2_LOOKUP(name, host, flags) \
   idn2_lookup_ul((const char *)name, (char **)host, flags)
 #endif
-
 #elif defined(USE_WIN32_IDN)
-/* prototype for Curl_win32_idn_to_ascii() */
-bool Curl_win32_idn_to_ascii(const char *in, char **out);
+#include "idn.h"
 #endif  /* USE_LIBIDN2 */
 
 #include "doh.h"