mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 18:35:07 +00:00
Kernel: Use a public member for NetworkAdapter on_receive
This commit is contained in:
parent
6d1418aa7a
commit
498f8c01a2
3 changed files with 5 additions and 6 deletions
|
@ -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> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue