summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <Pixel>2002-01-10 13:58:45 +0000
committerPixel <Pixel>2002-01-10 13:58:45 +0000
commit692672cd414addadfe666904c10d4492a7fcbe17 (patch)
tree0f045a94ce524b06772b90f064663fbb7f83d727
parente0bc4e1a1263eaeaeeeacd306eee6cf01aa9e87c (diff)
Socket constructor fix.
-rw-r--r--include/Socket.h1
-rw-r--r--lib/Socket.cc4
2 files changed, 5 insertions, 0 deletions
diff --git a/include/Socket.h b/include/Socket.h
index 45dfa2b..203b399 100644
--- a/include/Socket.h
+++ b/include/Socket.h
@@ -11,6 +11,7 @@
class Socket : public Handle {
public:
Socket() throw (GeneralException);
+ Socket(const Socket &);
virtual ~Socket() {}
bool SetLocal(const String &, int = 0);
bool Connect(const String &, int);
diff --git a/lib/Socket.cc b/lib/Socket.cc
index 1d7314b..cd3f4fd 100644
--- a/lib/Socket.cc
+++ b/lib/Socket.cc
@@ -19,6 +19,10 @@ Socket::Socket() throw (GeneralException) : Handle(socket(AF_INET, SOCK_STREAM,
}
}
+Socket::Socket(const Socket & s) : Handle(s), connected(s.connected), listening(s.listening), writeclosed(s.writeclosed), readclosed(s.readclosed) {
+ cerr << "Constructing a socket by copy...\n";
+}
+
Socket::Socket(int h) : Handle(h), connected(true), listening(false) { }
String Socket::GetName(void) {