|
- package capstan
-
- import (
- "syscall"
- )
-
- // Duplicate the file descriptor underlying `conn`. This is called by the parent
- // process following Relaunch to ensure that client failures don't close the
- // parent's descriptors.
- func duplicate(conn syscall.Conn) (uintptr, error) {
- return uintptr(0), nil
- }
|