From ab3a728ba5e623da2c44b0a12e7b057a165cc34a Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Wed, 2 Jul 2008 13:22:46 -0700 Subject: [PATCH] no need for protected variables --- src/node/socket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/socket.h b/src/node/socket.h index 21f060ca0..1c4e650e0 100644 --- a/src/node/socket.h +++ b/src/node/socket.h @@ -501,7 +501,7 @@ protected: void NotifyDataSent (uint32_t size); void NotifySend (uint32_t spaceAvailable); void NotifyDataRecv (void); - +private: Callback > m_connectionSucceeded; Callback > m_connectionFailed; Callback, const Address &> m_connectionRequest;