diff --git a/include/ftp/client.hpp b/include/ftp/client.hpp index 7cce8c7..4303439 100644 --- a/include/ftp/client.hpp +++ b/include/ftp/client.hpp @@ -58,6 +58,10 @@ class client client & operator=(const client &) = delete; + client(client &&) noexcept = delete; + + client & operator=(client &&) noexcept = delete; + replies connect(std::string_view hostname, std::uint16_t port = 21, const std::optional & username = std::nullopt,