[HTTP] Add service stuff

This commit is contained in:
wheremyfoodat 2023-08-08 17:07:12 +03:00
parent e2bd6ea4ef
commit 8d5a3d6197
7 changed files with 76 additions and 5 deletions

View file

@ -20,7 +20,8 @@ namespace KernelHandles {
CFG, // CFG service (Console & region info)
DLP_SRVR, // Download Play: Server. Used for network play.
DSP, // DSP service (Used for audio decoding and output)
HID, // HID service (Handles everything input-related including gyro)
HID, // HID service (Handles input-related things including gyro. Does NOT handle New3DS controls or CirclePadPro)
HTTP, // HTTP service (Handles HTTP requests)
IR_USER, // One of 3 infrared communication services
FRD, // Friend service (Miiverse friend service)
FS, // Filesystem service
@ -69,6 +70,7 @@ namespace KernelHandles {
case DSP: return "DSP";
case DLP_SRVR: return "DLP::SRVR";
case HID: return "HID";
case HTTP: return "HTTP";
case IR_USER: return "IR:USER";
case FRD: return "FRD";
case FS: return "FS";