[PR #3313] Http HLE WIP #3381

Open
opened 2026-02-27 22:03:29 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/shadps4-emu/shadPS4/pull/3313
Author: @mikusp
Created: 7/23/2025
Status: 🔄 Open

Base: mainHead: http_hle


📝 Commits (5)

📊 Changes

11 files changed (+473 additions, -5 deletions)

View changed files

📝 .github/workflows/build.yml (+4 -4)
📝 CMakeLists.txt (+10 -1)
📝 src/core/libraries/network/http.h (+9 -0)
src/core/libraries/network/http_connection.h (+19 -0)
src/core/libraries/network/http_epoll.cpp (+72 -0)
src/core/libraries/network/http_epoll.h (+26 -0)
src/core/libraries/network/http_object.h (+36 -0)
src/core/libraries/network/http_request.cpp (+156 -0)
src/core/libraries/network/http_request.h (+51 -0)
src/core/libraries/network/http_table.h (+71 -0)
src/core/libraries/network/http_template.h (+19 -0)

📄 Description

Just the internals, including different object types used in the library


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/shadps4-emu/shadPS4/pull/3313 **Author:** [@mikusp](https://github.com/mikusp) **Created:** 7/23/2025 **Status:** 🔄 Open **Base:** `main` ← **Head:** `http_hle` --- ### 📝 Commits (5) - [`e6ab3a7`](https://github.com/shadps4-emu/shadPS4/commit/e6ab3a71774abd0ba98291c6170d5d0b301eafda) Http HLE internals - [`81d24f3`](https://github.com/shadps4-emu/shadPS4/commit/81d24f32c65f6dd53279d75028bd7b0b088ad1ad) Define required Http HLE types - [`c4b6841`](https://github.com/shadps4-emu/shadPS4/commit/c4b68413588ae782699b0ffc26766067177bb874) Include new Http files - [`d72b466`](https://github.com/shadps4-emu/shadPS4/commit/d72b466db061d65dda1b3f4cf92dfe8e831ea11b) Find libcurl in cmake - [`f0e0f4a`](https://github.com/shadps4-emu/shadPS4/commit/f0e0f4a897837c7d0022a85d3f65b08dcb7c1fd1) Install libcurl-dev in CI ### 📊 Changes **11 files changed** (+473 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build.yml` (+4 -4) 📝 `CMakeLists.txt` (+10 -1) 📝 `src/core/libraries/network/http.h` (+9 -0) ➕ `src/core/libraries/network/http_connection.h` (+19 -0) ➕ `src/core/libraries/network/http_epoll.cpp` (+72 -0) ➕ `src/core/libraries/network/http_epoll.h` (+26 -0) ➕ `src/core/libraries/network/http_object.h` (+36 -0) ➕ `src/core/libraries/network/http_request.cpp` (+156 -0) ➕ `src/core/libraries/network/http_request.h` (+51 -0) ➕ `src/core/libraries/network/http_table.h` (+71 -0) ➕ `src/core/libraries/network/http_template.h` (+19 -0) </details> ### 📄 Description Just the internals, including different object types used in the library --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/shadPS4#3381
No description provided.