mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
25 lines
No EOL
552 B
C++
25 lines
No EOL
552 B
C++
#pragma once
|
|
#include "helpers.hpp"
|
|
#include "kernel_types.hpp"
|
|
#include "logger.hpp"
|
|
#include "memory.hpp"
|
|
|
|
class HTTPService {
|
|
using Handle = HorizonHandle;
|
|
|
|
Handle handle = KernelHandles::HTTP;
|
|
Memory& mem;
|
|
MAKE_LOG_FUNCTION(log, httpLogger)
|
|
|
|
bool initialized = false;
|
|
|
|
// Service commands
|
|
void createRootCertChain(u32 messagePointer);
|
|
void initialize(u32 messagePointer);
|
|
void rootCertChainAddDefaultCert(u32 messagePointer);
|
|
|
|
public:
|
|
HTTPService(Memory& mem) : mem(mem) {}
|
|
void reset();
|
|
void handleSyncRequest(u32 messagePointer);
|
|
}; |