summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tftpy/TftpServer.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tftpy/TftpServer.py b/tftpy/TftpServer.py
index a5b8e5c..75e7be4 100644
--- a/tftpy/TftpServer.py
+++ b/tftpy/TftpServer.py
@@ -228,7 +228,6 @@ class TftpServerHandler(TftpSession):
"""This method generates a new UDP socket, whose listening port must
be randomly generated, and not conflict with any already in use. For
now, let the OS do this."""
- random.seed()
port = random.randrange(1025, 65536)
# FIXME - sockets should be non-blocking?
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)