diff options
| author | Jason Molenda <jmolenda@apple.com> | 2013-01-18 01:20:12 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2013-01-18 01:20:12 +0000 |
| commit | 7eaf54d8e68bb4569ce62e5dab6e3a5fc95291e4 (patch) | |
| tree | bd942058e5d2988ea0474313b80186abed6c8813 /lldb/tools/debugserver/source/RNBSocket.h | |
| parent | 92c487d13ca845261e5d2fcfbc6fc2d131dcfa26 (diff) | |
| download | bcm5719-llvm-7eaf54d8e68bb4569ce62e5dab6e3a5fc95291e4.tar.gz bcm5719-llvm-7eaf54d8e68bb4569ce62e5dab6e3a5fc95291e4.zip | |
<rdar://problem/12243932>
Change RNBSocket from using lockdown's lockdown_secure_checkin()
function to using lockdown's secure_lockdown_checkin() function.
llvm-svn: 172775
Diffstat (limited to 'lldb/tools/debugserver/source/RNBSocket.h')
| -rw-r--r-- | lldb/tools/debugserver/source/RNBSocket.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/tools/debugserver/source/RNBSocket.h b/lldb/tools/debugserver/source/RNBSocket.h index 97fd632fd16..be2199d5316 100644 --- a/lldb/tools/debugserver/source/RNBSocket.h +++ b/lldb/tools/debugserver/source/RNBSocket.h @@ -20,6 +20,10 @@ #include <string> #include "DNBTimer.h" +#ifdef WITH_LOCKDOWN +#include "lockdown.h" +#endif + class RNBSocket { public: @@ -29,6 +33,7 @@ public: m_fd (-1), #ifdef WITH_LOCKDOWN m_fd_from_lockdown (false), + m_ld_conn (), #endif m_timer (true) // Make a thread safe timer { @@ -67,6 +72,7 @@ protected: #ifdef WITH_LOCKDOWN bool m_fd_from_lockdown; + lockdown_connection m_ld_conn; #endif DNBTimer m_timer; |

