def __init__(self, request, client_address, server):
# Change user and group (only when runned as root)
if (os.getgid() == 0) and pysshrp.common.config.userId:
os.setgid(pysshrp.common.config.userId)
if (os.getuid() == 0) and pysshrp.common.config.groupId:
os.setuid(pysshrp.common.config.groupId)
SocketServer.BaseRequestHandler.__init__(self, request, client_address, server)
评论列表
文章目录