removed hardcoded op 'e' in client demo; hardcoded test server output

This commit is contained in:
Russ Magee 2018-01-17 16:55:10 -08:00
parent 9fb9d073ab
commit ad5366bdfb
2 changed files with 3 additions and 2 deletions

View File

@ -36,7 +36,6 @@ func main() {
fmt.Println("Err!")
panic(err)
}
fmt.Fprintf(conn,"e") // tell server just to echo
_, err = io.Copy(conn, os.Stdin)
if err != nil && err.Error() != "EOF" {
fmt.Println(err)

View File

@ -152,7 +152,8 @@ func main() {
*connOp = data[0]
data = data[1:chN]
chN -= 1
// Have op here and first block of data[]
fmt.Printf("[* connOp '%c']\n", *connOp)
// The CloseHandler typically handles the
// accumulated command data
@ -161,6 +162,7 @@ func main() {
authCookie: "c00ki3",
CloseHandler: testCloseHandler,
status: 0}
conn.Write([]byte("SERVER OUTPUT"))
}
//fmt.Printf("Client sent %s\n", string(data))