aboutsummaryrefslogtreecommitdiffstats
path: root/jrt_test
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@oath.com>2018-08-31 14:41:39 +0200
committerHenning Baldersheim <balder@oath.com>2018-08-31 14:41:39 +0200
commitfcb7879d82904fd86a6773c3b22bba2c31fd5b94 (patch)
treeee6b632ad163748417c954de6441455f2ede9bf9 /jrt_test
parent9724fa1edc8cab44d7ecc652ec36b4c859fabe31 (diff)
Remove use and implementation of directwrite option
Diffstat (limited to 'jrt_test')
-rw-r--r--jrt_test/src/jrt-test/simpleserver/simpleserver.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp b/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
index ed7ff0e40bc..a0781ee4720 100644
--- a/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
+++ b/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
@@ -76,15 +76,10 @@ int
App::Main()
{
if (_argc < 2) {
- printf("usage: %s <listenspec> [ddw]\n", _argv[0]);
- printf(" ddw = disable direct write\n");
+ printf("usage: %s <listenspec>\n", _argv[0]);
return 1;
}
FRT_Supervisor orb;
- if (_argc >= 3 && strcmp(_argv[2], "ddw") == 0) {
- printf("(direct write disabled)\n");
- orb.GetTransport()->SetDirectWrite(false);
- }
Server server(&orb);
orb.Listen(_argv[1]);
orb.Main();