()
| 312 | } |
| 313 | |
| 314 | func (w *DERPFromDRPCWrapper) Recv() (*tailcfg.DERPMap, error) { |
| 315 | p, err := w.Client.Recv() |
| 316 | if err != nil { |
| 317 | return nil, err |
| 318 | } |
| 319 | return DERPMapFromProto(p), nil |
| 320 | } |
| 321 | |
| 322 | var _ DERPClient = &DERPFromDRPCWrapper{} |
nothing calls this directly
no test coverage detected