ClientFD is a wrapper around FDID that provides client-side utilities so that RPC making is easier.
| 28 | // ClientFD is a wrapper around FDID that provides client-side utilities |
| 29 | // so that RPC making is easier. |
| 30 | type ClientFD struct { |
| 31 | fd FDID |
| 32 | client *Client |
| 33 | } |
| 34 | |
| 35 | // ID returns the underlying FDID. |
| 36 | func (f *ClientFD) ID() FDID { |
nothing calls this directly
no outgoing calls
no test coverage detected