1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

Kernel: Convert network adapter names to Kernel::KString

Another step of incremental progress of removing `AK::String` from the
kernel, to harden against OOM.
This commit is contained in:
Brian Gianforcaro 2021-09-27 17:49:56 -07:00 committed by Brian Gianforcaro
parent 33a9f908a6
commit 2770433d30
16 changed files with 64 additions and 68 deletions

View file

@ -14,7 +14,7 @@ class LoopbackAdapter final : public NetworkAdapter {
AK_MAKE_ETERNAL
private:
LoopbackAdapter();
LoopbackAdapter(NonnullOwnPtr<KString>);
public:
static RefPtr<LoopbackAdapter> try_create();