diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-26 23:52:01 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-26 23:52:01 -0500 |
commit | 65886d792d198528a7f35d8d59f8cfeaa5d34e1c (patch) | |
tree | b83ca439b0b7e6a4d6ff8d6ed1de1f22c6a91f97 /servers/auth_server_lin/src/auth_conn.h | |
parent | 9c9085621bf01f9b39e15eb856ff521ecb01fccf (diff) | |
download | ulab-65886d792d198528a7f35d8d59f8cfeaa5d34e1c.tar.gz ulab-65886d792d198528a7f35d8d59f8cfeaa5d34e1c.zip |
Add skeleton for FPGA viewer
Fix authserver crash
Diffstat (limited to 'servers/auth_server_lin/src/auth_conn.h')
-rw-r--r-- | servers/auth_server_lin/src/auth_conn.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/servers/auth_server_lin/src/auth_conn.h b/servers/auth_server_lin/src/auth_conn.h index aea8a48..55bb5de 100644 --- a/servers/auth_server_lin/src/auth_conn.h +++ b/servers/auth_server_lin/src/auth_conn.h @@ -63,6 +63,7 @@ class AuthSocket : public TDEKerberosServerSocket int m_criticalSection; TQString m_remoteHost; int m_stationID; + bool m_bound; KSimpleConfig* m_config; TQSqlDatabase* m_database; @@ -86,12 +87,16 @@ class AuthServer : public TQServerSocket ~AuthServer(); void newConnection(int socket); + + private slots: + int connectToDatabase(); signals: void newConnect(AuthSocket*); private: KSimpleConfig* m_config; + TQSqlDatabase* m_database; friend class AuthSocket; |