Index: lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp =================================================================== --- lldb/trunk/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp +++ lldb/trunk/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 @@ 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) {