summaryrefslogtreecommitdiffstats
path: root/tupkg
diff options
context:
space:
mode:
Diffstat (limited to 'tupkg')
-rwxr-xr-xtupkg/server/tupkgs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tupkg/server/tupkgs b/tupkg/server/tupkgs
index ec96d4bd..dab4e584 100755
--- a/tupkg/server/tupkgs
+++ b/tupkg/server/tupkgs
@@ -226,6 +226,7 @@ class ServerSocket(threading.Thread):
sread, swrite, serror = select.select([self.socket],[self.socket],[self.socket],1)
if sread:
(clientsocket, address) = self.socket.accept()
+ print time.asctime(time.gmtime())
print "New connection from " + str(address)
ct = ClientSocket(clientsocket)
ct.start()