aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_channel.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-01-26 21:36:19 +0000
committerlloyd <[email protected]>2012-01-26 21:36:19 +0000
commit17554e7261c56b809c48a55b3afffe7f87a3a8e1 (patch)
treea953ca2e3460b67f175c9e63cc7ce5e1e5aca315 /src/tls/tls_channel.h
parentcb8c64be095a0ef75beb621e8d669096efd7b8ae (diff)
Remove Alert::Level enum, replace with bool
Diffstat (limited to 'src/tls/tls_channel.h')
-rw-r--r--src/tls/tls_channel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/tls_channel.h b/src/tls/tls_channel.h
index bba6c23ec..aa171ca4b 100644
--- a/src/tls/tls_channel.h
+++ b/src/tls/tls_channel.h
@@ -40,7 +40,7 @@ class BOTAN_DLL Channel
/**
* Send a close notification alert
*/
- void close() { send_alert(Alert(Alert::WARNING, Alert::CLOSE_NOTIFY)); }
+ void close() { send_alert(Alert(Alert::CLOSE_NOTIFY)); }
/**
* @return true iff the connection is active for sending application data