the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 25 lines 559 B view raw
1#pragma once 2 3#include <cell/http.h> 4 5 6class SonyHttp_PS3 7{ 8 static bool loadCerts(size_t *numBufPtr, CellHttpsData **caListPtr); 9 static void* getData(const char* url, int* pDataSize); 10 static bool parseUri(const char* szUri, CellHttpUri& parsedUri); 11 12 static void *uriPool; 13 static void *httpPool; 14 static void* sslPool; 15 static void* cookiePool; 16 static CellHttpClientId client; 17 static CellHttpTransId trans; 18 static bool bInitialised; 19 20public: 21 bool init(); 22 void shutdown(); 23 bool getDataFromURL(const char* szURL, void** ppOutData, int* pDataSize); 24 25};