Rename RemoteAccess to TargetControl to better disambiguate RemoteServer

This commit is contained in:
baldurk
2016-08-02 17:03:55 +02:00
parent 4bfbcbd14d
commit 481a28dc29
29 changed files with 316 additions and 254 deletions
+2 -2
View File
@@ -393,7 +393,7 @@ struct RemoteServerCommand : public Command
parser.add<string>(
"host", 'h', "The interface to listen on. By default listens on all interfaces", false, "");
parser.add<uint32_t>("port", 'p', "The port to listen on.", false,
RENDERDOC_GetDefaultReplayHostPort());
RENDERDOC_GetDefaultRemoteServerPort());
}
virtual const char *Description()
{
@@ -429,7 +429,7 @@ struct ReplayCommand : public Command
parser.add<string>("remote-host", 0,
"Instead of replaying locally, replay on this host over the network.", false);
parser.add<uint32_t>("remote-port", 0, "If --remote-host is set, use this port.", false,
RENDERDOC_GetDefaultReplayHostPort());
RENDERDOC_GetDefaultRemoteServerPort());
}
virtual const char *Description()
{