https://github.com/tuokri/ue3-libhttp
HTTP client library for Unreal Engine 3. Based on UE2-LibHTTP by elmuerte.
https://github.com/tuokri/ue3-libhttp
udk ue3 unreal-engine-3 unrealscript
Last synced: 29 days ago
JSON representation
HTTP client library for Unreal Engine 3. Based on UE2-LibHTTP by elmuerte.
- Host: GitHub
- URL: https://github.com/tuokri/ue3-libhttp
- Owner: tuokri
- License: mit
- Created: 2025-06-18T12:11:04.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-06-18T20:11:01.000Z (9 months ago)
- Last Synced: 2025-06-18T21:21:13.444Z (9 months ago)
- Topics: udk, ue3, unreal-engine-3, unrealscript
- Language: UnrealScript
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Unreal Engine 3 LibHTTP
LibHTTP is a general purpose library for Unreal Engine 3. It allows you to fetch files stored on web servers.
Based on UE2-LibHTTP by elmuerte: https://github.com/elmuerte/UE2-LibHTTP.
Ported to Unreal Engine 3. Some features have been stripped.
This version of the package has been made specifically for Rising Storm 2: Vietnam!
Some minor tweaks may be necessary for other games!
##### Original UE2 Features **(some might not work in the UE3 version)**:
- Support for HTTP version 1.0 and 1.1
- Support for GET/POST/HEAD/TRACE request methods
- Normal and accelerated transfer modes (accelerated mode creates a performance hit)
- Response and Request Header management
- Cookie management
- Authentication supports (both Basic and Digest methods are supported)
- Support for HTTP proxies
- Graceful handling of connection timeouts
- Automatic decoding of chunked data
- Automatically follows redirects (creates a redirection history)
- Support for multipart/form-data POST data (preferred form)
## TODO
- There might be some bad leftover code from the UE2 -> UE3 refactor.
- Some UE2 specific code was dropped entirely, check if there's a way to bring it back in and if it's even desirable to do so.