Created
May 29, 2019 04:46
-
-
Save martinomburajr/a3e5343d90f44916cec1fbd636b48c7a to your computer and use it in GitHub Desktop.
syscall rawconn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // A RawConn is a raw network connection. syscall/net.go | |
| type RawConn interface { | |
| Control(f func(fd uintptr)) error | |
| Read(f func(fd uintptr) (done bool)) error | |
| Write(f func(fd uintptr) (done bool)) error | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment