websocket/examples/echo
Gary Burd 7f59b56ea4 Fix DefaultDialar value
Initialize as pointer to struct with zero values as as implied by the
doc comment. This initialization matches similar values in the standard
library.
2015-10-18 15:41:02 -07:00
..
README.md Add client and server example 2015-09-23 15:23:26 -07:00
client.go Fix DefaultDialar value 2015-10-18 15:41:02 -07:00
server.go Do not build files in echo example 2015-09-23 15:29:30 -07:00

README.md

Client and server example

This example shows a simple client and server.

The server echoes messages sent to it. The client sends a message every five seconds and prints all messages received.

To run the example, start the server:

$ go run server.go

Next, start the client:

$ go run client.go