clarify licensing
[nestedvm.git] / src / tests / Echo.java
index 6ef97ae..670b818 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright 2000-2005 the Contributors, as shown in the revision logs.
+// Licensed under the Apache License 2.0 ("the License").
+// You may not use this file except in compliance with the License.
+
 package tests;
 
 import java.net.*;
@@ -22,8 +26,8 @@ public class Echo {
                 task.closeFD(0);
                 task.closeFD(1);
                 //task.closeFD(2);
-                task.addFD(new Runtime.InputStreamFD(sock.getInputStream()));
-                task.addFD(new Runtime.OutputStreamFD(sock.getOutputStream()));
+                task.addFD(new Runtime.InputOutputStreamFD(sock.getInputStream()));
+                task.addFD(new Runtime.InputOutputStreamFD(sock.getOutputStream()));
                 //task.dupFD(1);
                 
                 int status = task.run(new String[]{"EchoHelper"} );