PeekLookAtSocketFd is implemented by Bind objects that support having their file descriptor peeked at. Used by wireguard-android.
| 67 | // PeekLookAtSocketFd is implemented by Bind objects that support having their |
| 68 | // file descriptor peeked at. Used by wireguard-android. |
| 69 | type PeekLookAtSocketFd interface { |
| 70 | PeekLookAtSocketFd4() (fd int, err error) |
| 71 | PeekLookAtSocketFd6() (fd int, err error) |
| 72 | } |
| 73 | |
| 74 | // An Endpoint maintains the source/destination caching for a peer. |
| 75 | // |
nothing calls this directly
no outgoing calls
no test coverage detected