summaryrefslogtreecommitdiffstats
path: root/servers/auth_server_lin/src/auth_conn.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-06-26 23:52:01 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-06-26 23:52:01 -0500
commit65886d792d198528a7f35d8d59f8cfeaa5d34e1c (patch)
treeb83ca439b0b7e6a4d6ff8d6ed1de1f22c6a91f97 /servers/auth_server_lin/src/auth_conn.h
parent9c9085621bf01f9b39e15eb856ff521ecb01fccf (diff)
downloadulab-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.h5
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;