dns: implement GetHostByName redirection (backend TODO)

This commit is contained in:
Michael Scire
2021-01-30 17:23:14 -08:00
committed by SciresM
parent 8bf8df43e2
commit 400f5142ee
20 changed files with 1251 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
/**
* @file sfdnsres_shim.h
* @brief IPC wrapper for dns.mitm.
* @author SciresM
* @copyright libnx Authors
*/
#pragma once
#include <switch.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Command forwarders. */
Result sfdnsresGetHostByNameRequestWithOptionsFwd(Service *s, u64 process_id, const void *name, size_t name_size, void *out_hostent, size_t out_hostent_size, u32 *out_size, u32 options_version, const void *option, size_t option_size, u32 num_options, s32 *out_host_error, s32 *out_errno);
#ifdef __cplusplus
}
#endif