(conn ziface.IConnection)
| 35 | } |
| 36 | |
| 37 | func DoClientConnectedLost(conn ziface.IConnection) { |
| 38 | if name, err := conn.GetProperty("Name"); err == nil { |
| 39 | zlog.Debug("Conn Property Name = ", name) |
| 40 | } |
| 41 | |
| 42 | if home, err := conn.GetProperty("Home"); err == nil { |
| 43 | zlog.Debug("Conn Property Home = ", home) |
| 44 | } |
| 45 | |
| 46 | zlog.Debug("DoClientConnectedLost is Called ... ") |
| 47 | } |
| 48 | |
| 49 | func main() { |
| 50 | client := znet.NewClient("127.0.0.1", 8999) |
nothing calls this directly
no test coverage detected