shadowsocks/server.py
breakwa11 c73127d858 insert a reload step
main thread run 'thread_db' directly
insert a 'ulimit' command before run the server
2015-10-10 19:47:50 +08:00

35 lines
641 B
Python

#!/usr/bin/python
import time
import sys
import threading
import os
os.chdir(os.path.split(os.path.realpath(__file__))[0])
import server_pool
import db_transfer
from shadowsocks import shell
#def test():
# thread.start_new_thread(DbTransfer.thread_db, ())
# Api.web_server()
class MainThread(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
def run(self):
db_transfer.DbTransfer.thread_db()
def main():
shell.check_python()
if len(sys.argv) <= 3:
db_transfer.DbTransfer.thread_db()
else:
thread = MainThread()
thread.start()
while True:
time.sleep(99999)
if __name__ == '__main__':
main()