diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2018-10-29 13:22:47 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2018-10-29 13:22:47 -0400 |
commit | 431f22cc098a118a862412c1bac1a8aa1bc6ceb7 (patch) | |
tree | cd7aab111d346273eef3da089f65055b7fffed10 /gdb/ser-uds.c | |
parent | 7f53228719a0111e41c66da6c9c3b2ed1fd2aab9 (diff) | |
download | gdb-431f22cc098a118a862412c1bac1a8aa1bc6ceb7.zip gdb-431f22cc098a118a862412c1bac1a8aa1bc6ceb7.tar.gz gdb-431f22cc098a118a862412c1bac1a8aa1bc6ceb7.tar.bz2 |
Revert "GDB: Remote target can now accept the form unix::/path/to/socket."
This reverts commit 88f5cc8cf8606478832c7d0d7b74755f3f625015.
Diffstat (limited to 'gdb/ser-uds.c')
-rw-r--r-- | gdb/ser-uds.c | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/gdb/ser-uds.c b/gdb/ser-uds.c index acace25..a98469f 100644 --- a/gdb/ser-uds.c +++ b/gdb/ser-uds.c @@ -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) @@ -35,21 +33,9 @@ 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); |