summaryrefslogtreecommitdiff
path: root/src/server.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/server.cc')
-rw-r--r--src/server.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server.cc b/src/server.cc
index 6d4d26b..4d556fc 100644
--- a/src/server.cc
+++ b/src/server.cc
@@ -68,6 +68,7 @@ void newConnection(Socket *socket, Info *info)
frame = new Frame(NULL, DVPACKAGE_SIZE);
+ info->info("CONNECTION OPENED");
info->info("New connection (%s)", inet_ntoa(socket->socketaddr.sin_addr));
Network network = Network(socket, info);
@@ -125,6 +126,5 @@ void newConnection(Socket *socket, Info *info)
if(enc) delete enc;
- info->info("Connection closed");
-
+ info->info("CONNECTION CLOSED");
}