()
| 142 | } |
| 143 | |
| 144 | func (this *TcpConn) BeginPing() { |
| 145 | atomic.StoreInt64(&this.last_ping_tick, GetNowTick()) |
| 146 | } |
| 147 | |
| 148 | func (this *TcpConn) Pong(now_tick int64) { |
| 149 | if this.IsClosed() == true { |
nothing calls this directly
no test coverage detected