htc: implement socket driver (socket api not really impl'd yet)

This commit is contained in:
Michael Scire 2021-02-24 01:45:55 -08:00 committed by SciresM
parent b5ab491603
commit 1c974a387c
31 changed files with 1389 additions and 35 deletions
libraries/libstratosphere/source/socket

View file

@ -42,4 +42,16 @@ namespace ams::socket {
return impl::InetNtohs(net);
}
Result Initialize(const Config &config) {
return impl::Initialize(config);
}
Result Finalize() {
return impl::Finalize();
}
Result InitializeAllocatorForInternal(void *buffer, size_t size) {
return impl::InitializeAllocatorForInternal(buffer, size);
}
}