diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2005-12-04 15:07:41 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2005-12-04 15:07:41 +0000 |
commit | f4a14ae8aa330af001239792b9a4fc0ed78f6f8e (patch) | |
tree | ecb47c3bfcdbca8f549b14ca9ea7d06b7ddd8a7c /Lib/SimpleXMLRPCServer.py | |
parent | 42de0fa021883c613d990a638d587aa3c312ca06 (diff) | |
download | cpython-f4a14ae8aa330af001239792b9a4fc0ed78f6f8e.tar.gz |
[Bug #1222790] Set reuse-address and close-on-exec flags on the HTTP listening socket
Diffstat (limited to 'Lib/SimpleXMLRPCServer.py')
-rw-r--r-- | Lib/SimpleXMLRPCServer.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Lib/SimpleXMLRPCServer.py b/Lib/SimpleXMLRPCServer.py index 5e39840dcb..ae06bda354 100644 --- a/Lib/SimpleXMLRPCServer.py +++ b/Lib/SimpleXMLRPCServer.py @@ -104,7 +104,7 @@ from xmlrpclib import Fault import SocketServer import BaseHTTPServer import sys -import os +import os, fcntl def resolve_dotted_attribute(obj, attr, allow_dotted_names=True): """resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d @@ -465,6 +465,8 @@ class SimpleXMLRPCServer(SocketServer.TCPServer, from SimpleXMLRPCDispatcher to change this behavior. """ + allow_reuse_address = True + def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler, logRequests=1): self.logRequests = logRequests @@ -472,6 +474,14 @@ class SimpleXMLRPCServer(SocketServer.TCPServer, SimpleXMLRPCDispatcher.__init__(self) SocketServer.TCPServer.__init__(self, addr, requestHandler) + # [Bug #1222790] If possible, set close-on-exec flag; if a + # method spawns a subprocess, the subprocess shouldn't have + # the listening socket open. + if hasattr(fcntl, 'FD_CLOEXEC'): + flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD) + flags |= fcntl.FD_CLOEXEC + fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags) + class CGIXMLRPCRequestHandler(SimpleXMLRPCDispatcher): """Simple handler for XML-RPC data passed through CGI.""" |