I cant connect my esp32 to my blynk local server

my sketch

#define BLYNK_PRINT Serial
#include <WiFi.h>
#include <WiFiClientSecure.h>
#include <BlynkSimpleEsp32_SSL.h>
char auth[] = "myyoken";
char ssid[] = "myWiFi";
char pass[] = "myPass";

void setup()
{
  Serial.begin(115200);

  Blynk.begin(auth, ssid, pass,"192.168.1.57",8440);
}

void loop()
{
  Blynk.run();
}

and this my output on Serial monitor
Screenshot 2024-09-08 183546
more ifomation:
esp32 board devmodule v.1.0.0
blynk libraries v.1.0.0-beta 3

Local server support is no longer provided.

@Pavel is this a policy decision that the community can no longer respond to questions regarding Legacy local server?

Pete.