Make streams and vfs and http shared_ptr

This commit is contained in:
2025-09-29 02:22:27 -05:00
parent 71d0e36a5c
commit d785508571
61 changed files with 541 additions and 951 deletions

View File

@@ -39,7 +39,7 @@ int main(int argc, char** argv)
{
Tesses::Framework::TF_Init();
HttpDictionary reqHeaders;
WebSocketConn conn;
std::shared_ptr<WebSocketConn> conn = std::make_shared<WebSocketConn>();
WebSocketClient("ws://echo.websocket.org/",reqHeaders,conn);
return 0;