Add support for the qEcho command to lldb-server in the common packets.

llvm-svn: 238533
This commit is contained in:
Greg Clayton
2015-05-29 00:15:15 +00:00
parent de4c598ccf
commit 420562aa82
4 changed files with 18 additions and 0 deletions

View File

@@ -140,6 +140,10 @@ StringExtractorGDBRemote::GetServerPacketType () const
if (packet_size == 2) return eServerPacketType_qC;
break;
case 'E':
if (PACKET_STARTS_WITH ("qEcho:")) return eServerPacketType_qEcho;
break;
case 'G':
if (PACKET_STARTS_WITH ("qGroupName:")) return eServerPacketType_qGroupName;
if (PACKET_MATCHES ("qGetWorkingDir")) return eServerPacketType_qGetWorkingDir;