func WithTCPCongestionControl(cc string) Option {
    return func(s *stack.Stack) error {
        opt := tcpip.CongestionControlOption(cc)
        if err := s.SetTransportProtocolOption(tcp.ProtocolNumber, &opt); err != nil {
            return fmt.Errorf("set TCP congestion control algorithm: %s", err)