summaryrefslogtreecommitdiff
path: root/tools/usbredirect.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/usbredirect.c')
-rw-r--r--tools/usbredirect.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/usbredirect.c b/tools/usbredirect.c
index 5e2376c..ff910ab 100644
--- a/tools/usbredirect.c
+++ b/tools/usbredirect.c
@@ -567,7 +567,12 @@ main(int argc, char *argv[])
GSocketService *socket_service;
socket_service = g_socket_service_new ();
- GInetAddress *iaddr = g_inet_address_new_loopback(G_SOCKET_FAMILY_IPV4);
+ GInetAddress *iaddr = g_inet_address_new_from_string(self->addr);
+ if (iaddr == NULL) {
+ g_warning("Failed to parse IP: %s", self->addr);
+ goto end;
+ }
+
GSocketAddress *saddr = g_inet_socket_address_new(iaddr, self->port);
g_object_unref(iaddr);