Kaydet (Commit) 54175f7c authored tarafından Guido van Rossum's avatar Guido van Rossum

import string; add 129.6.64 to security

üst f3d39abb
...@@ -58,7 +58,7 @@ class Server: ...@@ -58,7 +58,7 @@ class Server:
if self._verbose > 1: print "Wait for next request ..." if self._verbose > 1: print "Wait for next request ..."
ok = self._dorequest(rf, wf) ok = self._dorequest(rf, wf)
_valid = ['192.16.201.*', '192.16.197.*', '132.151.1.*'] _valid = ['192.16.201.*', '192.16.197.*', '132.151.1.*', '129.6.64.*']
def _verify(self, conn, address): def _verify(self, conn, address):
host, port = address host, port = address
...@@ -121,6 +121,7 @@ class SecureServer(Server, Security): ...@@ -121,6 +121,7 @@ class SecureServer(Server, Security):
Security.__init__(self) Security.__init__(self)
def _verify(self, conn, address): def _verify(self, conn, address):
import string
challenge = self._generate_challenge() challenge = self._generate_challenge()
conn.send("%d\n" % challenge) conn.send("%d\n" % challenge)
response = "" response = ""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment