aboutsummaryrefslogtreecommitdiff
path: root/src/Socket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Socket.cpp')
-rw-r--r--src/Socket.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Socket.cpp b/src/Socket.cpp
index 9c8da69..a078cab 100644
--- a/src/Socket.cpp
+++ b/src/Socket.cpp
@@ -28,13 +28,13 @@ namespace sibs
{
eid = other.eid;
udtSocket = other.udtSocket;
- other.eid = 0;
- other.udtSocket = 0;
+ other.eid = -1;
+ other.udtSocket = -1;
}
Socket::~Socket()
{
- UDT::close(udtSocket);
UDT::epoll_remove_usock(eid, udtSocket);
+ UDT::close(udtSocket);
}
} \ No newline at end of file