]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Revert "GDB: Remote target can now accept the form unix::/path/to/socket."
authorSimon Marchi <simon.marchi@ericsson.com>
Mon, 29 Oct 2018 17:22:47 +0000 (13:22 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Mon, 29 Oct 2018 17:22:47 +0000 (13:22 -0400)
This reverts commit 88f5cc8cf8606478832c7d0d7b74755f3f625015.

gdb/ser-uds.c
gdb/serial.c

index acace258be19d504926f25539a2437b6808949fc..a98469f67b8aad255b62bf1ff6b9fe2bc7732ff6 100644 (file)
@@ -23,8 +23,6 @@
 
 #include <sys/socket.h>
 #include <sys/un.h>
-#include <netdb.h>
-#include "netstuff.h"
 
 #ifndef UNIX_PATH_MAX
 #define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) NULL)->sun_path)
 static int
 uds_open (struct serial *scb, const char *name)
 {
-  struct addrinfo hint;
-
-  memset (&hint, 0, sizeof (hint));
-  /* Assume no prefix will be passed, therefore we should use
-     AF_UNSPEC.  */
-  hint.ai_family = AF_UNSPEC;
-  hint.ai_socktype = SOCK_STREAM;
-
-  parsed_connection_spec parsed = parse_connection_spec (name, &hint);
-
-  const char *socket_name = parsed.port_str.empty() ? name : parsed.port_str.c_str ();
-
   struct sockaddr_un addr;
 
-  if (strlen (socket_name) > UNIX_PATH_MAX - 1)
+  if (strlen (name) > UNIX_PATH_MAX - 1)
     {
       warning
         (_("The socket name is too long.  It may be no longer than %s bytes."),
@@ -59,7 +45,7 @@ uds_open (struct serial *scb, const char *name)
 
   memset (&addr, 0, sizeof addr);
   addr.sun_family = AF_UNIX;
-  strncpy (addr.sun_path, socket_name, UNIX_PATH_MAX - 1);
+  strncpy (addr.sun_path, name, UNIX_PATH_MAX - 1);
 
   int sock = socket (AF_UNIX, SOCK_STREAM, 0);
 
index f7c3e6e5ee76c45aba53ff32494320b44d8cb05b..7f9362a3bf35550fdc5cad7a5ec4c8668c637538 100644 (file)
@@ -210,7 +210,7 @@ serial_open (const char *name)
   /* Check for a colon, suggesting an IP address/port pair.
      Do this *after* checking for all the interesting prefixes.  We
      don't want to constrain the syntax of what can follow them.  */
-  else if (!startswith (name, "unix:") && (strchr (name, ':')))
+  else if (strchr (name, ':'))
     ops = serial_interface_lookup ("tcp");
   else
     {
@@ -218,8 +218,7 @@ serial_open (const char *name)
       /* Check to see if name is a socket.  If it is, then treat it
          as such.  Otherwise assume that it's a character device.  */
       struct stat sb;
-      if (startswith (name, "unix:") ||
-         (stat (name, &sb) == 0 && (sb.st_mode & S_IFMT) == S_IFSOCK))
+      if (stat (name, &sb) == 0 && (sb.st_mode & S_IFMT) == S_IFSOCK)
        ops = serial_interface_lookup ("local");
       else
 #endif