summaryrefslogtreecommitdiffstats
path: root/Lib/SimpleXMLRPCServer.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-12-04 15:07:41 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-12-04 15:07:41 (GMT)
commit3a97605500919ceeff8c6cd2dd7d352baa1142d8 (patch)
treea04ece7d62a1d1376f0579536bf9e2c1a60cd657 /Lib/SimpleXMLRPCServer.py
parentcf6b7c99d9242a2c811035eb5e6486e8054e549c (diff)
downloadcpython-3a97605500919ceeff8c6cd2dd7d352baa1142d8.zip
cpython-3a97605500919ceeff8c6cd2dd7d352baa1142d8.tar.gz
cpython-3a97605500919ceeff8c6cd2dd7d352baa1142d8.tar.bz2
[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.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/Lib/SimpleXMLRPCServer.py b/Lib/SimpleXMLRPCServer.py
index 5e39840..ae06bda 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."""