SQL Client with VodafoneUSBModem

Fork of MySQLClient by Donatien Garnier

Revision:
8:cdb6d1236f37
Parent:
7:f06820c3b8e8
--- a/LPC1768/services/mysql/MySQLClient.h	Fri Nov 22 09:16:20 2013 +0000
+++ b/LPC1768/services/mysql/MySQLClient.h	Fri Nov 22 09:32:56 2013 +0000
@@ -129,10 +129,6 @@
   
   void readData(); //Copy to buf
   void writeData(); //Copy from buf
-#if 0
-  void onTCPSocketEvent(TCPSocketEvent e);
-  void onDNSReply(DNSReply r);
-#endif 
   void onResult(MySQLResult r); //Called when exchange completed or on failure
   void onTimeout(); //Connection has timed out
   
@@ -142,17 +138,10 @@
   
   void (*m_pCb)(MySQLResult);
 
-#if 0  
-  TCPSocket* m_pTCPSocket;
-#endif
   TCPSocketConnection* m_pTCPSocket;  
   Timer m_watchdog;
   int m_timeout;
 
-#if 0  
-  DNSRequest* m_pDnsReq;
-#endif  
-  
   bool m_closed;
   
   enum MySQLStep