mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
Kernel: Use a public member for NetworkAdapter on_receive
This commit is contained in:
parent
6d1418aa7a
commit
498f8c01a2
Notes:
sideshowbarker
2024-07-19 12:27:09 +09:00
Author: https://github.com/deoxxa
Commit: 498f8c01a2
Pull-request: https://github.com/SerenityOS/serenity/pull/499
Reviewed-by: https://github.com/awesomekling
3 changed files with 5 additions and 6 deletions
|
@ -88,8 +88,8 @@ void NetworkAdapter::did_receive(const u8* data, int length)
|
|||
m_packets_in++;
|
||||
m_bytes_in += length;
|
||||
m_packet_queue.append(KBuffer::copy(data, length));
|
||||
if (m_on_receive)
|
||||
m_on_receive();
|
||||
if (on_receive)
|
||||
on_receive();
|
||||
}
|
||||
|
||||
Optional<KBuffer> NetworkAdapter::dequeue_packet()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue