This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"code.google.com/p/go.crypto/ssh" | |
"fmt" | |
"log" | |
"net" | |
"os" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/client.go b/client.go | |
index 4b0c9c3..8ac98e4 100644 | |
--- a/client.go | |
+++ b/client.go | |
@@ -32,6 +32,7 @@ type Call struct { | |
Reply interface{} // The reply from the function (*struct). | |
Error error // After completion, the error status. | |
Done chan *Call // Strobes when call is complete. | |
+ Trace uint32 // unique id used for tracing | |
} |