diff --git a/sstp/main.cpp b/sstp/main.cpp index f1e1c41..1095f36 100644 --- a/sstp/main.cpp +++ b/sstp/main.cpp @@ -27,7 +27,7 @@ int main(int argc, char **argv) { int returnCode(0); Profiler profiler; - String version = "1.0.0.8"; // major version, minor version, patch, build + String version = "1.0.0.9"; // major version, minor version, patch, build std::cout << "sstp version " << version.str() << std::endl; if(!registerSignalHandler()) diff --git a/sstp/socketserver.cpp b/sstp/socketserver.cpp index 410f85a..4fde480 100644 --- a/sstp/socketserver.cpp +++ b/sstp/socketserver.cpp @@ -83,8 +83,8 @@ bool SocketServer::isOkay(void) } /// @brief This is the listener. It will wait for incoming connections. -/// When an incoming connection is received it will create a SocketConnectionReceiver object and call it's threadFunction to handle further interactions -/// such as transmitting a file. +/// When an incoming connection is received it will create a SocketConnectionReceiver object and call it's threadFunction +/// to handle further interactions such as transmitting a file. void SocketServer::listen(void) { while(isOkay()) diff --git a/sstp/sstp.cpp b/sstp/sstp.cpp index f255f25..6658661 100644 --- a/sstp/sstp.cpp +++ b/sstp/sstp.cpp @@ -6,7 +6,7 @@ #include /// @brief [0]=program [1]=SERVERMODE [2]={port} -/// @Note Currently this method will never return. The application is terminate with CTRL-C. Ideally, we would exit is some cleaner fashion +/// @Note Currently this method will never return. The application is terminated with CTRL-C. Ideally, we would exit in some cleaner fashion /// perhaps by implementing a CTRL-C hook and then destroying the SocketServer properly by calling it's destructor. See SocketServer::~SocketServer() /// @param commands void SSTP::handleServer(Block& commands) diff --git a/sstp/sstp.hpp b/sstp/sstp.hpp index e69a57d..47e22e7 100644 --- a/sstp/sstp.hpp +++ b/sstp/sstp.hpp @@ -10,7 +10,7 @@ class SSTP { public: SSTP(); - ~SSTP(); + virtual ~SSTP(); void handleServer(Block& arguments); void handleClient(Block& arguments); private: