Kernel: Use a public member for NetworkAdapter on_receive

This commit is contained in:
Conrad Pankoff 2019-08-28 22:14:38 +10:00 committed by Andreas Kling
commit 498f8c01a2
Notes: sideshowbarker 2024-07-19 12:27:09 +09:00
3 changed files with 5 additions and 6 deletions

View file

@ -50,9 +50,9 @@ void NetworkTask_main()
adapter.ipv4_netmask().to_string().characters(),
adapter.ipv4_gateway().to_string().characters());
adapter.set_on_receive([&pending_packets]() {
adapter.on_receive = [&pending_packets]() {
pending_packets++;
});
};
});
auto dequeue_packet = [&pending_packets]() -> Optional<KBuffer> {