From 3d7162b1cc33f1126ab3c05ebfea19ffed82c699 Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Wed, 6 Aug 2014 21:18:13 +0000 Subject: Fix ProcessKDP after Host/Socket addition Reviewers: zturner Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D4815 llvm-svn: 214996 --- lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lldb/source/Plugins/Process/MacOSX-Kernel') diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp index cde3c5c6a67..8b1850dcccf 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp @@ -22,6 +22,7 @@ #include "lldb/Core/UUID.h" #include "lldb/Host/Host.h" #include "lldb/Host/Symbols.h" +#include "lldb/Host/Socket.h" #include "lldb/Interpreter/CommandInterpreter.h" #include "lldb/Interpreter/CommandObject.h" #include "lldb/Interpreter/CommandObjectMultiword.h" @@ -272,8 +273,8 @@ ProcessKDP::DoConnectRemote (Stream *strm, const char *remote_url) if (conn_ap->IsConnected()) { - const Socket& socket = static_cast(conn_ap->GetReadObject()); - const uint16_t reply_port = socket.GetPort(); + const Socket& socket = static_cast(*conn_ap->GetReadObject()); + const uint16_t reply_port = socket.GetPortNumber(); if (reply_port != 0) { -- cgit v1.2.3