func WithTCPSACKEnabled(v bool) Option {
    return func(s *stack.Stack) error {
        opt := tcpip.TCPSACKEnabled(v)
        if err := s.SetTransportProtocolOption(tcp.ProtocolNumber, &opt); err != nil {
            return fmt.Errorf("set TCP SACK: %s", err)