]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1662] Removed unused parameters
authorFrancis Dupont <fdupont@isc.org>
Thu, 25 Mar 2021 13:38:41 +0000 (14:38 +0100)
committerFrancis Dupont <fdupont@isc.org>
Fri, 26 Mar 2021 14:39:56 +0000 (15:39 +0100)
src/lib/asiolink/botan_tls.h

index 1ad6af6e4bd1e5f2d5ef387e8ada850c91f9e59a..b1af58f66a5a73cad68b6d279614da2d8c786976 100644 (file)
@@ -122,16 +122,12 @@ public:
     virtual ~TlsStream() { }
 
     /// @brief TLS Handshake.
-    ///
-    /// @param callback Callback object.
-    virtual void handshake(Callback& callback) {
+    virtual void handshake(Callback&) {
         isc_throw(NotImplemented, "Botan TLS is not yet supported");
     }
 
     /// @brief TLS shutdown.
-    ///
-    /// @param callback Callback object.
-    virtual void shutdown(Callback& callback) {
+    virtual void shutdown(Callback&) {
         isc_throw(NotImplemented, "Botan TLS is not yet supported");
     }