aboutsummaryrefslogtreecommitdiff
path: root/src/stable/protocoltelnet.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2015-07-20 18:50:29 +0000
committerMike Buland <eichlan@xagasoft.com>2015-07-20 18:50:29 +0000
commit598af2576c98e45161ca21662434423f349958cc (patch)
tree1489111bed01573ec2e0e51944d6d140df20f14c /src/stable/protocoltelnet.cpp
parentb5e1c2fba2b372aa19e1c857c176a175f30241d8 (diff)
downloadlibbu++-598af2576c98e45161ca21662434423f349958cc.tar.gz
libbu++-598af2576c98e45161ca21662434423f349958cc.tar.bz2
libbu++-598af2576c98e45161ca21662434423f349958cc.tar.xz
libbu++-598af2576c98e45161ca21662434423f349958cc.zip
Added a close function. It's nice to be able to close your connection whenever
you want to.
Diffstat (limited to 'src/stable/protocoltelnet.cpp')
-rw-r--r--src/stable/protocoltelnet.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stable/protocoltelnet.cpp b/src/stable/protocoltelnet.cpp
index 9cf2a7b..77bc3dc 100644
--- a/src/stable/protocoltelnet.cpp
+++ b/src/stable/protocoltelnet.cpp
@@ -339,6 +339,12 @@ void Bu::ProtocolTelnet::flush()
339 pClient->flush(); 339 pClient->flush();
340} 340}
341 341
342void Bu::ProtocolTelnet::close()
343{
344 Bu::MutexLocker l( mWrite );
345 pClient->close();
346}
347
342void Bu::ProtocolTelnet::onWill( char cCode ) 348void Bu::ProtocolTelnet::onWill( char cCode )
343{ 349{
344 Bu::MutexLocker l( mWrite ); 350 Bu::MutexLocker l( mWrite );