private void CreateIPFilter(string ip, Callout callout, ProviderContext providerContext)
 {
     _subLayer.CreateRemoteIPv4CalloutFilter(
         new DisplayData
     {
         Name        = "ProtonVPN Split Tunnel redirect IP",
         Description = "Redirects network connections of the IP"
     },
         Layer.AppConnectRedirectV4,
         15,
         callout,
         providerContext,
         ip
         );
 }