Revision: 40818
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40818&view=rev
Author:   davidloman
Date:     2010-09-29 13:57:31 +0000 (Wed, 29 Sep 2010)

Log Message:
-----------
Stub in handling for DISCONNECTREQ in SessionManager

Modified Paths:
--------------
    rt^3/trunk/src/GS/SessionManager.cxx
    rt^3/trunk/src/GS/SessionManager.h

Modified: rt^3/trunk/src/GS/SessionManager.cxx
===================================================================
--- rt^3/trunk/src/GS/SessionManager.cxx        2010-09-29 13:54:49 UTC (rev 
40817)
+++ rt^3/trunk/src/GS/SessionManager.cxx        2010-09-29 13:57:31 UTC (rev 
40818)
@@ -90,7 +90,8 @@
        case SESSIONINFO:
                //Dunno why someone would be sending the GS this message!
                break;
-       case LOGOUTSESSION:
+       case DISCONNECTREQ:
+               this->handleDisconnectReqMsg((TypeOnlyMsg*)msg);
                break;
 
        }
@@ -138,7 +139,12 @@
 
 }
 
+void
+SessionManager::handleDisconnectReqMsg(TypeOnlyMsg* msg)
+{
 
+}
+
 // Local Variables: ***
 // mode: C++ ***
 // tab-width: 8 ***

Modified: rt^3/trunk/src/GS/SessionManager.h
===================================================================
--- rt^3/trunk/src/GS/SessionManager.h  2010-09-29 13:54:49 UTC (rev 40817)
+++ rt^3/trunk/src/GS/SessionManager.h  2010-09-29 13:57:31 UTC (rev 40818)
@@ -30,6 +30,7 @@
 #include "Session.h"
 #include "INetMsgHandler.h"
 #include "NewSessionReqMsg.h"
+#include "TypeOnlyMsg.h"
 
 #include <QtCore/QMap>
 #include <QtCore/QMutex>
@@ -53,6 +54,7 @@
 
     Session* newSession(Account* a);
     void handleNewSessionReqMsg(NewSessionReqMsg* msg);
+    void handleDisconnectReqMsg(TypeOnlyMsg* msg);
 };
 
 #endif


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to