summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/TcpAcceptor.h
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2008-05-21 17:11:04 +0800
committerMatthew Newhook <matthew@zeroc.com>2008-05-21 17:11:04 +0800
commit06e20672108324fa9c2bc688aa9cfca1a586b200 (patch)
tree6bf6164f18dc7f20c638824e965d12aaab57dbf6 /cpp/src/Ice/TcpAcceptor.h
parenthttp://bugzilla/bugzilla/show_bug.cgi?id=3216 - mcastServer not initialized. (diff)
downloadice-06e20672108324fa9c2bc688aa9cfca1a586b200.tar.bz2
ice-06e20672108324fa9c2bc688aa9cfca1a586b200.tar.xz
ice-06e20672108324fa9c2bc688aa9cfca1a586b200.zip
Some cleanup of the networking code.
Diffstat (limited to 'cpp/src/Ice/TcpAcceptor.h')
-rw-r--r--cpp/src/Ice/TcpAcceptor.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/cpp/src/Ice/TcpAcceptor.h b/cpp/src/Ice/TcpAcceptor.h
index 4971f5df49a..7ef67d0a496 100644
--- a/cpp/src/Ice/TcpAcceptor.h
+++ b/cpp/src/Ice/TcpAcceptor.h
@@ -43,12 +43,13 @@ private:
virtual ~TcpAcceptor();
friend class TcpEndpointI;
- InstancePtr _instance;
- TraceLevelsPtr _traceLevels;
- ::Ice::LoggerPtr _logger;
+ const InstancePtr _instance;
+ const TraceLevelsPtr _traceLevels;
+ const ::Ice::LoggerPtr _logger;
+ const struct sockaddr_storage _addr;
+
SOCKET _fd;
int _backlog;
- struct sockaddr_storage _addr;
};
}