]> source.dussan.org Git - tigervnc.git/commitdiff
Make throwConnFailedException() protected
authorPierre Ossman <ossman@cendio.se>
Thu, 11 Oct 2018 05:54:12 +0000 (07:54 +0200)
committerPierre Ossman <ossman@cendio.se>
Fri, 9 Nov 2018 16:16:04 +0000 (17:16 +0100)
It is an internal function so it has no business being public.
Compare with CConnection where it is already private.

common/rfb/SConnection.h

index 92ddff7198c3e03e7131d361231cf4f5ebc2b467..26302403fcb0e6d951e2023a34fa4b28452c3809 100644 (file)
@@ -149,11 +149,6 @@ namespace rfb {
     bool authenticated() { return (state_ == RFBSTATE_INITIALISATION ||
                                    state_ == RFBSTATE_NORMAL); }
 
-    // throwConnFailedException() prints a message to the log, sends a conn
-    // failed message to the client (if possible) and throws a
-    // ConnFailedException.
-    void throwConnFailedException(const char* format, ...) __printf_attr(2, 3);
-
     SMsgReader* reader() { return reader_; }
     SMsgWriter* writer() { return writer_; }
 
@@ -177,6 +172,11 @@ namespace rfb {
     rdr::S32 getPreferredEncoding() { return preferredEncoding; }
 
   protected:
+    // throwConnFailedException() prints a message to the log, sends a conn
+    // failed message to the client (if possible) and throws a
+    // ConnFailedException.
+    void throwConnFailedException(const char* format, ...) __printf_attr(2, 3);
+
     void setState(stateEnum s) { state_ = s; }
 
     void setReader(SMsgReader *r) { reader_ = r; }