diff options
Diffstat (limited to 'src/lib/utils/socket/socket.cpp')
-rw-r--r-- | src/lib/utils/socket/socket.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/utils/socket/socket.cpp b/src/lib/utils/socket/socket.cpp index 54033bc55..3c742c3ca 100644 --- a/src/lib/utils/socket/socket.cpp +++ b/src/lib/utils/socket/socket.cpp @@ -358,6 +358,9 @@ OS::open_socket(const std::string& hostname, return std::unique_ptr<OS::Socket>(new BSD_Socket(hostname, service, timeout)); #else + BOTAN_UNUSED(hostname); + BOTAN_UNUSED(service); + BOTAN_UNUSED(timeout); // No sockets for you return std::unique_ptr<Socket>(); #endif |