mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
8 lines
96 B
Go
8 lines
96 B
Go
package libbox
|
|
|
|
import "os"
|
|
|
|
func dup(fd int) (nfd int, err error) {
|
|
return 0, os.ErrInvalid
|
|
}
|