Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ldcsaa committed Mar 12, 2021
2 parents 4baa377 + f25fa2e commit 579096d
Show file tree
Hide file tree
Showing 243 changed files with 3,112 additions and 729 deletions.
8 changes: 4 additions & 4 deletions Doc/Example.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ int main(int argc, char* const argv[])
::HP_Set_FN_Agent_OnShutdown(s_listener, OnShutdown);

// 3. Start component object
if(::HP_Agent_HasStarted(s_agent))
if(!::HP_Agent_Start(s_agent, "0.0.0.0", 5555, TRUE))
exit(1);

// 4. Connect to dest host
::HP_Agent_Connect(s_agent, "remote.host.1", REMOTE_PORT_1, nullptr);
::HP_Agent_Connect(s_agent, "remote.host.2", REMOTE_PORT_2, nullptr);
::HP_Agent_Connect(s_agent, "remote.host.3", REMOTE_PORT_3, nullptr);
::HP_Agent_Connect(s_agent, REMOTE_HOST_1, REMOTE_PORT_1, nullptr);
::HP_Agent_Connect(s_agent, REMOTE_HOST_2, REMOTE_PORT_2, nullptr);
::HP_Agent_Connect(s_agent, REMOTE_HOST_3, REMOTE_PORT_3, nullptr);

/* wait for exit */
// ... ...
Expand Down
15 changes: 15 additions & 0 deletions Linux/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
==========================================================================================
v5.8.2 Update:
==========================================================================================

> Major Upadate
-----------------
1. Bug fix: some HP-Socket components raises segment fault in ARM32 platform.
2. Bug fix: UDP Client component raises segment fault in some special scenarios.

> Third-party library Upadate
-----------------
1. mimalloc upgrade to version 1.7.0.
2. llhttp upgrade to version 4.0.0.
2. openssl upgrade to version 1.1.1j.

==========================================================================================
v5.8.1 Update:
==========================================================================================

Expand Down
6 changes: 3 additions & 3 deletions Linux/compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,11 @@ parse_args()

do_build()
{
C_LAN_OPTS="-c -x c -I $DEPT_INC_DIR -Wall -Wswitch -Wno-deprecated-declarations -Wempty-body -Wconversion -Wreturn-type -Wparentheses -Wno-pointer-sign -Wno-format -Wuninitialized -Wunreachable-code -Wunused-function -Wunused-value -Wunused-variable -fno-strict-aliasing -fPIC -fvisibility=hidden -fexceptions -std=c11"
CPP_LAN_OPTS="-c -x c++ -I $DEPT_INC_DIR -Wall -Wno-class-memaccess -Wno-reorder -Wswitch -Wno-deprecated-declarations -Wempty-body -Wconversion -Wreturn-type -Wparentheses -Wno-format -Wuninitialized -Wunreachable-code -Wunused-function -Wunused-value -Wunused-variable -fno-strict-aliasing -fPIC -fthreadsafe-statics -fvisibility=hidden -fexceptions -frtti -std=c++14"
C_LAN_OPTS="-c -x c -I $DEPT_INC_DIR -Wall -Wswitch -Wno-deprecated-declarations -Wempty-body -Wconversion -Wreturn-type -Wparentheses -Wno-pointer-sign -Wno-format -Wuninitialized -Wunreachable-code -Wunused-function -Wunused-value -Wunused-variable -fno-strict-aliasing -fPIC -fvisibility=hidden -fexceptions -std=c17"
CPP_LAN_OPTS="-c -x c++ -I $DEPT_INC_DIR -Wall -Wno-class-memaccess -Wno-reorder -Wswitch -Wno-deprecated-declarations -Wempty-body -Wconversion -Wreturn-type -Wparentheses -Wno-format -Wuninitialized -Wunreachable-code -Wunused-function -Wunused-value -Wunused-variable -fno-strict-aliasing -fPIC -fthreadsafe-statics -fvisibility=hidden -fexceptions -frtti -std=c++17"
LINK_OPTS="-Wl,--no-undefined -Wl,-L$DEPT_LIB_DIR -L$DEPT_LIB_DIR -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -shared -Wl,-Bsymbolic"
RELEASE_CFG_OPTS="-g0 -O3 -fomit-frame-pointer -DNDEBUG"
DEBUG_CFG_OPTS="-g2 -gdwarf-2 -O0 -fno-omit-frame-pointer -DDEBUG -D_DEBUG"
DEBUG_CFG_OPTS="-g3 -gdwarf-2 -O0 -fno-omit-frame-pointer -DDEBUG -D_DEBUG"

if [ -d $HPSOCKET_LIB_TARGET_DIR ]; then
rm -rf $HPSOCKET_LIB_TARGET_DIR
Expand Down
8 changes: 4 additions & 4 deletions Linux/demo/testecho-arq-pfm/client/client.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
Expand Down
8 changes: 4 additions & 4 deletions Linux/demo/testecho-arq-pfm/server/server.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
Expand Down
8 changes: 4 additions & 4 deletions Linux/demo/testecho-arq/client/client.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-n 0</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-n 0</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-n 0</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-n 0</RemoteDebuggerCommandArguments>
Expand Down
8 changes: 4 additions & 4 deletions Linux/demo/testecho-arq/server/server.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
Expand Down
8 changes: 4 additions & 4 deletions Linux/demo/testecho-http-4c/agent/agent.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
Expand Down
8 changes: 4 additions & 4 deletions Linux/demo/testecho-http-4c/client/client.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-a 192.168.56.12</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-a fe80::a00:27ff:fe87:8fd -t 10 -l 10000 -e 1000 -b fe80::a00:27ff:feac:f66e%eth4 -n 0</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
Expand Down
8 changes: 4 additions & 4 deletions Linux/demo/testecho-http-4c/server/server.vcxproj.user
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-a 127.0.0.1</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<RemoteTarget>460065450;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>900728461;192.168.56.12 (username=bruce, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-a fe80::a00:27ff:fe87:8fd -t 10 -l 10000 -e 1000 -b fe80::a00:27ff:feac:f66e%eth4 -n 0</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<RemoteTarget>78784327;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteTarget>279903029;192.168.56.101 (username=, port=22, authentication=Password)</RemoteTarget>
<RemoteDebuggingMode>gdbserver</RemoteDebuggingMode>
<DebuggerFlavor>LinuxDebugger</DebuggerFlavor>
<RemoteDebuggerCommandArguments>-b -</RemoteDebuggerCommandArguments>
Expand Down
Loading

0 comments on commit 579096d

Please sign in to comment.