mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-24 03:36:52 -04:00
htc: implement socket driver (socket api not really impl'd yet)
This commit is contained in:
parent
b5ab491603
commit
1c974a387c
31 changed files with 1389 additions and 35 deletions
libraries/libstratosphere/source/socket
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue