summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIMAP/Client.h
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2023-02-08 23:05:44 +0100
committerLinus Groh <mail@linusgroh.de>2023-02-13 00:50:07 +0000
commita96339b72b3b417ffaa4fbb4e7575149f749acaa (patch)
tree10cd665265e85a750d6a84713bedf73acf359069 /Userland/Libraries/LibIMAP/Client.h
parentd43a7eae545cd699f301471bd0f82399174339c1 (diff)
downloadserenity-a96339b72b3b417ffaa4fbb4e7575149f749acaa.zip
LibCore: Move Stream-based sockets into the `Core` namespace
Diffstat (limited to 'Userland/Libraries/LibIMAP/Client.h')
-rw-r--r--Userland/Libraries/LibIMAP/Client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibIMAP/Client.h b/Userland/Libraries/LibIMAP/Client.h
index 1b88f3256b..1aa558224f 100644
--- a/Userland/Libraries/LibIMAP/Client.h
+++ b/Userland/Libraries/LibIMAP/Client.h
@@ -60,7 +60,7 @@ public:
Function<void(ResponseData&&)> unrequested_response_callback;
private:
- Client(StringView host, u16 port, NonnullOwnPtr<Core::Stream::Socket>);
+ Client(StringView host, u16 port, NonnullOwnPtr<Core::Socket>);
void setup_callbacks();
ErrorOr<void> on_ready_to_receive();
@@ -71,7 +71,7 @@ private:
StringView m_host;
u16 m_port;
- NonnullOwnPtr<Core::Stream::Socket> m_socket;
+ NonnullOwnPtr<Core::Socket> m_socket;
RefPtr<Promise<Empty>> m_connect_pending {};
int m_current_command = 1;