1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:17:36 +00:00

LibCore: Constify CTCPServer's local_address() and local_port()

This commit is contained in:
Andreas Kling 2019-11-04 12:49:48 +01:00
parent fbe8569412
commit 50d937152a
2 changed files with 4 additions and 4 deletions

View file

@ -16,8 +16,8 @@ public:
RefPtr<CTCPSocket> accept();
IPv4Address local_address();
u16 local_port();
IPv4Address local_address() const;
u16 local_port() const;
Function<void()> on_ready_to_accept;