(p []byte)
| 432 | } |
| 433 | |
| 434 | func (pc *PingConn) Write(p []byte) (n int, err error) { |
| 435 | return pc.WriteTo(p, &pc.raddr) |
| 436 | } |
| 437 | |
| 438 | func (pc *PingConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) { |
| 439 | e, notifyCh := waiter.NewChannelEntry(waiter.EventIn) |