RetroArch
|
#include <inttypes.h>
#include <string.h>
#include <stdarg.h>
#include <libretro.h>
#include <civetweb/civetweb.h>
#include <string/stdstring.h>
#include <compat/zlib.h>
#include "../../core.h"
#include "../../retroarch.h"
#include "../../gfx/video_driver.h"
#include "../../managers/core_option_manager.h"
#include "../../cheevos/cheevos.h"
#include "../../content.h"
Macros | |
#define | __STDC_FORMAT_MACROS |
#define | BASIC_INFO "info" |
#define | MEMORY_MAP "memoryMap" |
Functions | |
static void | httpserver_z85_encode_inplace (Bytef *data, size_t size) |
static void | json_string_encode (char *output, size_t size, const char *input) |
static int | httpserver_error (struct mg_connection *conn, unsigned code, const char *fmt,...) |
static int | httpserver_handle_basic_info (struct mg_connection *conn, void *cbdata) |
static int | httpserver_handle_get_mmaps (struct mg_connection *conn, void *cbdata) |
static int | httpserver_handle_get_mmap (struct mg_connection *conn, void *cbdata) |
static int | httpserver_handle_mmaps (struct mg_connection *conn, void *cbdata) |
int | httpserver_init (unsigned port) |
void | httpserver_destroy (void) |
Variables | |
static struct mg_callbacks | s_httpserver_callbacks |
static struct mg_context * | s_httpserver_ctx = NULL |
#define __STDC_FORMAT_MACROS |
#define BASIC_INFO "info" |
#define MEMORY_MAP "memoryMap" |
|
static |
|
static |
|
static |
|
static |
|
static |
int httpserver_init | ( | unsigned | port | ) |
|
static |
|
static |