summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/asyncore.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py
index 5175002..e970162 100644
--- a/Lib/asyncore.py
+++ b/Lib/asyncore.py
@@ -201,6 +201,7 @@ class dispatcher:
# I think it should inherit this anyway
self.socket.setblocking (0)
self.connected = 1
+ self.addr = sock.getpeername()
def __repr__ (self):
try:
@@ -306,6 +307,7 @@ class dispatcher:
return
else:
raise socket.error, why
+ self.addr = address
self.connected = 1
self.handle_connect()