diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-07-22 19:20:28 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-07-22 19:20:28 -0500 |
commit | fe54812cd70955f47af4010cedcf26e7ff6b592a (patch) | |
tree | ec58341471422024636cb9987dde565f3321a8de /servers/auth_server_lin/src/auth_conn.h | |
parent | 58cefd2d0172e7c1b51e00472a87df03e52c66c3 (diff) | |
download | ulab-fe54812cd70955f47af4010cedcf26e7ff6b592a.tar.gz ulab-fe54812cd70955f47af4010cedcf26e7ff6b592a.zip |
Add server index
Diffstat (limited to 'servers/auth_server_lin/src/auth_conn.h')
-rw-r--r-- | servers/auth_server_lin/src/auth_conn.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/servers/auth_server_lin/src/auth_conn.h b/servers/auth_server_lin/src/auth_conn.h index 61fc626..d1245be 100644 --- a/servers/auth_server_lin/src/auth_conn.h +++ b/servers/auth_server_lin/src/auth_conn.h @@ -46,7 +46,7 @@ class AuthSocket : public TDEKerberosServerSocket Q_OBJECT public: - AuthSocket(int sock, TQObject *parent=0, const char *name=0); + AuthSocket(int sock, int serverID, TQObject *parent=0, const char *name=0); ~AuthSocket(); public: @@ -67,6 +67,7 @@ class AuthSocket : public TDEKerberosServerSocket TQString m_remoteHost; int m_stationID; bool m_bound; + int m_serverID; bool m_servActive; int m_servState; @@ -113,6 +114,7 @@ class AuthServer : public TQServerSocket KSimpleConfig* m_config; TQSqlDatabase* m_database; TQTimer* m_sqlPingTimer; + int m_serverID; friend class AuthSocket; |