mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 21:02:39 +02:00
- DNS stuff moved to runtime/resolver.c & .h - Address manipulation functions moved to runtime/util/inet_addr.c - Removed sfdnsres/nifm handling in runtime/devices/socket.c - Renamed socketGetLastBsdResult to socketGetLastResult - Renamed socketGetLastSfdnsresResult to resolverGetLastResult - gethostid now inits/deinits nifm as needed - sfdnsres related configuration gone from SocketInitConfig - Fixed bug in addrinfo deserialization - getaddrinfo rewritten, hints can now be NULL - TODO: add back a way to control service discovery/cancel handle
6 lines
135 B
C
6 lines
135 B
C
#pragma once
|
|
#include "../types.h"
|
|
|
|
/// Fetch the last resolver Switch result code (thread-local).
|
|
Result resolverGetLastResult(void);
|