diff --git a/modules/http_trantor/detect.py b/modules/http_trantor/detect.py deleted file mode 100644 index 5c06e4b..0000000 --- a/modules/http_trantor/detect.py +++ /dev/null @@ -1,32 +0,0 @@ -import os -import platform -import sys - - -def is_active(): - return True - - -def get_name(): - return "http_trantor" - - -def can_build(): - return True - - -def get_opts(): - return [] - -def get_flags(): - - return [] - - -def configure(env): - env.Prepend(CPPPATH=["#modules/http_trantor"]) - env.Prepend(CPPPATH=["#modules/http_trantor/trantor/net"]) - env.Prepend(CPPPATH=["#modules/http_trantor/trantor/net/inner"]) - env.Prepend(CPPPATH=["#modules/http_trantor/trantor/utils"]) - - diff --git a/modules/http_trantor/SCsub b/modules/trantor/SCsub similarity index 100% rename from modules/http_trantor/SCsub rename to modules/trantor/SCsub diff --git a/modules/trantor/detect.py b/modules/trantor/detect.py new file mode 100644 index 0000000..865edd2 --- /dev/null +++ b/modules/trantor/detect.py @@ -0,0 +1,32 @@ +import os +import platform +import sys + + +def is_active(): + return True + + +def get_name(): + return "trantor" + + +def can_build(): + return True + + +def get_opts(): + return [] + +def get_flags(): + + return [] + + +def configure(env): + env.Prepend(CPPPATH=["#modules/trantor"]) + env.Prepend(CPPPATH=["#modules/trantor/trantor/net"]) + env.Prepend(CPPPATH=["#modules/trantor/trantor/net/inner"]) + env.Prepend(CPPPATH=["#modules/trantor/trantor/utils"]) + + diff --git a/modules/http_trantor/trantor/HEAD b/modules/trantor/trantor/HEAD similarity index 100% rename from modules/http_trantor/trantor/HEAD rename to modules/trantor/trantor/HEAD diff --git a/modules/http_trantor/trantor/License b/modules/trantor/trantor/License similarity index 100% rename from modules/http_trantor/trantor/License rename to modules/trantor/trantor/License diff --git a/modules/http_trantor/trantor/README.md b/modules/trantor/trantor/README.md similarity index 100% rename from modules/http_trantor/trantor/README.md rename to modules/trantor/trantor/README.md diff --git a/modules/http_trantor/trantor/exports.h b/modules/trantor/trantor/exports.h similarity index 100% rename from modules/http_trantor/trantor/exports.h rename to modules/trantor/trantor/exports.h diff --git a/modules/http_trantor/trantor/net/Channel.cc b/modules/trantor/trantor/net/Channel.cc similarity index 100% rename from modules/http_trantor/trantor/net/Channel.cc rename to modules/trantor/trantor/net/Channel.cc diff --git a/modules/http_trantor/trantor/net/Channel.h b/modules/trantor/trantor/net/Channel.h similarity index 100% rename from modules/http_trantor/trantor/net/Channel.h rename to modules/trantor/trantor/net/Channel.h diff --git a/modules/http_trantor/trantor/net/EventLoop.cc b/modules/trantor/trantor/net/EventLoop.cc similarity index 100% rename from modules/http_trantor/trantor/net/EventLoop.cc rename to modules/trantor/trantor/net/EventLoop.cc diff --git a/modules/http_trantor/trantor/net/EventLoop.h b/modules/trantor/trantor/net/EventLoop.h similarity index 100% rename from modules/http_trantor/trantor/net/EventLoop.h rename to modules/trantor/trantor/net/EventLoop.h diff --git a/modules/http_trantor/trantor/net/EventLoopThread.cc b/modules/trantor/trantor/net/EventLoopThread.cc similarity index 100% rename from modules/http_trantor/trantor/net/EventLoopThread.cc rename to modules/trantor/trantor/net/EventLoopThread.cc diff --git a/modules/http_trantor/trantor/net/EventLoopThread.h b/modules/trantor/trantor/net/EventLoopThread.h similarity index 100% rename from modules/http_trantor/trantor/net/EventLoopThread.h rename to modules/trantor/trantor/net/EventLoopThread.h diff --git a/modules/http_trantor/trantor/net/EventLoopThreadPool.cc b/modules/trantor/trantor/net/EventLoopThreadPool.cc similarity index 100% rename from modules/http_trantor/trantor/net/EventLoopThreadPool.cc rename to modules/trantor/trantor/net/EventLoopThreadPool.cc diff --git a/modules/http_trantor/trantor/net/EventLoopThreadPool.h b/modules/trantor/trantor/net/EventLoopThreadPool.h similarity index 100% rename from modules/http_trantor/trantor/net/EventLoopThreadPool.h rename to modules/trantor/trantor/net/EventLoopThreadPool.h diff --git a/modules/http_trantor/trantor/net/InetAddress.cc b/modules/trantor/trantor/net/InetAddress.cc similarity index 100% rename from modules/http_trantor/trantor/net/InetAddress.cc rename to modules/trantor/trantor/net/InetAddress.cc diff --git a/modules/http_trantor/trantor/net/InetAddress.h b/modules/trantor/trantor/net/InetAddress.h similarity index 100% rename from modules/http_trantor/trantor/net/InetAddress.h rename to modules/trantor/trantor/net/InetAddress.h diff --git a/modules/http_trantor/trantor/net/Resolver.h b/modules/trantor/trantor/net/Resolver.h similarity index 100% rename from modules/http_trantor/trantor/net/Resolver.h rename to modules/trantor/trantor/net/Resolver.h diff --git a/modules/http_trantor/trantor/net/TcpClient.cc b/modules/trantor/trantor/net/TcpClient.cc similarity index 100% rename from modules/http_trantor/trantor/net/TcpClient.cc rename to modules/trantor/trantor/net/TcpClient.cc diff --git a/modules/http_trantor/trantor/net/TcpClient.h b/modules/trantor/trantor/net/TcpClient.h similarity index 100% rename from modules/http_trantor/trantor/net/TcpClient.h rename to modules/trantor/trantor/net/TcpClient.h diff --git a/modules/http_trantor/trantor/net/TcpConnection.h b/modules/trantor/trantor/net/TcpConnection.h similarity index 100% rename from modules/http_trantor/trantor/net/TcpConnection.h rename to modules/trantor/trantor/net/TcpConnection.h diff --git a/modules/http_trantor/trantor/net/TcpServer.cc b/modules/trantor/trantor/net/TcpServer.cc similarity index 100% rename from modules/http_trantor/trantor/net/TcpServer.cc rename to modules/trantor/trantor/net/TcpServer.cc diff --git a/modules/http_trantor/trantor/net/TcpServer.h b/modules/trantor/trantor/net/TcpServer.h similarity index 100% rename from modules/http_trantor/trantor/net/TcpServer.h rename to modules/trantor/trantor/net/TcpServer.h diff --git a/modules/http_trantor/trantor/net/callbacks.h b/modules/trantor/trantor/net/callbacks.h similarity index 100% rename from modules/http_trantor/trantor/net/callbacks.h rename to modules/trantor/trantor/net/callbacks.h diff --git a/modules/http_trantor/trantor/net/inner/Acceptor.cc b/modules/trantor/trantor/net/inner/Acceptor.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/Acceptor.cc rename to modules/trantor/trantor/net/inner/Acceptor.cc diff --git a/modules/http_trantor/trantor/net/inner/Acceptor.h b/modules/trantor/trantor/net/inner/Acceptor.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/Acceptor.h rename to modules/trantor/trantor/net/inner/Acceptor.h diff --git a/modules/http_trantor/trantor/net/inner/AresResolver.cc b/modules/trantor/trantor/net/inner/AresResolver.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/AresResolver.cc rename to modules/trantor/trantor/net/inner/AresResolver.cc diff --git a/modules/http_trantor/trantor/net/inner/AresResolver.h b/modules/trantor/trantor/net/inner/AresResolver.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/AresResolver.h rename to modules/trantor/trantor/net/inner/AresResolver.h diff --git a/modules/http_trantor/trantor/net/inner/Connector.cc b/modules/trantor/trantor/net/inner/Connector.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/Connector.cc rename to modules/trantor/trantor/net/inner/Connector.cc diff --git a/modules/http_trantor/trantor/net/inner/Connector.h b/modules/trantor/trantor/net/inner/Connector.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/Connector.h rename to modules/trantor/trantor/net/inner/Connector.h diff --git a/modules/http_trantor/trantor/net/inner/NormalResolver.cc b/modules/trantor/trantor/net/inner/NormalResolver.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/NormalResolver.cc rename to modules/trantor/trantor/net/inner/NormalResolver.cc diff --git a/modules/http_trantor/trantor/net/inner/NormalResolver.h b/modules/trantor/trantor/net/inner/NormalResolver.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/NormalResolver.h rename to modules/trantor/trantor/net/inner/NormalResolver.h diff --git a/modules/http_trantor/trantor/net/inner/Poller.cc b/modules/trantor/trantor/net/inner/Poller.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/Poller.cc rename to modules/trantor/trantor/net/inner/Poller.cc diff --git a/modules/http_trantor/trantor/net/inner/Poller.h b/modules/trantor/trantor/net/inner/Poller.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/Poller.h rename to modules/trantor/trantor/net/inner/Poller.h diff --git a/modules/http_trantor/trantor/net/inner/Socket.cc b/modules/trantor/trantor/net/inner/Socket.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/Socket.cc rename to modules/trantor/trantor/net/inner/Socket.cc diff --git a/modules/http_trantor/trantor/net/inner/Socket.h b/modules/trantor/trantor/net/inner/Socket.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/Socket.h rename to modules/trantor/trantor/net/inner/Socket.h diff --git a/modules/http_trantor/trantor/net/inner/TcpConnectionImpl.cc b/modules/trantor/trantor/net/inner/TcpConnectionImpl.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/TcpConnectionImpl.cc rename to modules/trantor/trantor/net/inner/TcpConnectionImpl.cc diff --git a/modules/http_trantor/trantor/net/inner/TcpConnectionImpl.h b/modules/trantor/trantor/net/inner/TcpConnectionImpl.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/TcpConnectionImpl.h rename to modules/trantor/trantor/net/inner/TcpConnectionImpl.h diff --git a/modules/http_trantor/trantor/net/inner/Timer.cc b/modules/trantor/trantor/net/inner/Timer.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/Timer.cc rename to modules/trantor/trantor/net/inner/Timer.cc diff --git a/modules/http_trantor/trantor/net/inner/Timer.h b/modules/trantor/trantor/net/inner/Timer.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/Timer.h rename to modules/trantor/trantor/net/inner/Timer.h diff --git a/modules/http_trantor/trantor/net/inner/TimerQueue.cc b/modules/trantor/trantor/net/inner/TimerQueue.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/TimerQueue.cc rename to modules/trantor/trantor/net/inner/TimerQueue.cc diff --git a/modules/http_trantor/trantor/net/inner/TimerQueue.h b/modules/trantor/trantor/net/inner/TimerQueue.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/TimerQueue.h rename to modules/trantor/trantor/net/inner/TimerQueue.h diff --git a/modules/http_trantor/trantor/net/inner/poller/EpollPoller.cc b/modules/trantor/trantor/net/inner/poller/EpollPoller.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/poller/EpollPoller.cc rename to modules/trantor/trantor/net/inner/poller/EpollPoller.cc diff --git a/modules/http_trantor/trantor/net/inner/poller/EpollPoller.h b/modules/trantor/trantor/net/inner/poller/EpollPoller.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/poller/EpollPoller.h rename to modules/trantor/trantor/net/inner/poller/EpollPoller.h diff --git a/modules/http_trantor/trantor/net/inner/poller/KQueue.cc b/modules/trantor/trantor/net/inner/poller/KQueue.cc similarity index 100% rename from modules/http_trantor/trantor/net/inner/poller/KQueue.cc rename to modules/trantor/trantor/net/inner/poller/KQueue.cc diff --git a/modules/http_trantor/trantor/net/inner/poller/KQueue.h b/modules/trantor/trantor/net/inner/poller/KQueue.h similarity index 100% rename from modules/http_trantor/trantor/net/inner/poller/KQueue.h rename to modules/trantor/trantor/net/inner/poller/KQueue.h diff --git a/modules/http_trantor/trantor/tests/AsyncFileLoggerTest.cc b/modules/trantor/trantor/tests/AsyncFileLoggerTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/AsyncFileLoggerTest.cc rename to modules/trantor/trantor/tests/AsyncFileLoggerTest.cc diff --git a/modules/http_trantor/trantor/tests/AsyncFileLoggerTest1.cc b/modules/trantor/trantor/tests/AsyncFileLoggerTest1.cc similarity index 100% rename from modules/http_trantor/trantor/tests/AsyncFileLoggerTest1.cc rename to modules/trantor/trantor/tests/AsyncFileLoggerTest1.cc diff --git a/modules/http_trantor/trantor/tests/CMakeLists.txt b/modules/trantor/trantor/tests/CMakeLists.txt similarity index 100% rename from modules/http_trantor/trantor/tests/CMakeLists.txt rename to modules/trantor/trantor/tests/CMakeLists.txt diff --git a/modules/http_trantor/trantor/tests/ConcurrentTaskQueueTest.cc b/modules/trantor/trantor/tests/ConcurrentTaskQueueTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/ConcurrentTaskQueueTest.cc rename to modules/trantor/trantor/tests/ConcurrentTaskQueueTest.cc diff --git a/modules/http_trantor/trantor/tests/DelayedSSLClientTest.cc b/modules/trantor/trantor/tests/DelayedSSLClientTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/DelayedSSLClientTest.cc rename to modules/trantor/trantor/tests/DelayedSSLClientTest.cc diff --git a/modules/http_trantor/trantor/tests/DelayedSSLServerTest.cc b/modules/trantor/trantor/tests/DelayedSSLServerTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/DelayedSSLServerTest.cc rename to modules/trantor/trantor/tests/DelayedSSLServerTest.cc diff --git a/modules/http_trantor/trantor/tests/DnsTest.cc b/modules/trantor/trantor/tests/DnsTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/DnsTest.cc rename to modules/trantor/trantor/tests/DnsTest.cc diff --git a/modules/http_trantor/trantor/tests/KickoffTest.cc b/modules/trantor/trantor/tests/KickoffTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/KickoffTest.cc rename to modules/trantor/trantor/tests/KickoffTest.cc diff --git a/modules/http_trantor/trantor/tests/LoggerTest.cc b/modules/trantor/trantor/tests/LoggerTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/LoggerTest.cc rename to modules/trantor/trantor/tests/LoggerTest.cc diff --git a/modules/http_trantor/trantor/tests/RunInLoopTest1.cc b/modules/trantor/trantor/tests/RunInLoopTest1.cc similarity index 100% rename from modules/http_trantor/trantor/tests/RunInLoopTest1.cc rename to modules/trantor/trantor/tests/RunInLoopTest1.cc diff --git a/modules/http_trantor/trantor/tests/RunInLoopTest2.cc b/modules/trantor/trantor/tests/RunInLoopTest2.cc similarity index 100% rename from modules/http_trantor/trantor/tests/RunInLoopTest2.cc rename to modules/trantor/trantor/tests/RunInLoopTest2.cc diff --git a/modules/http_trantor/trantor/tests/RunOnQuitTest.cc b/modules/trantor/trantor/tests/RunOnQuitTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/RunOnQuitTest.cc rename to modules/trantor/trantor/tests/RunOnQuitTest.cc diff --git a/modules/http_trantor/trantor/tests/SSLClientTest.cc b/modules/trantor/trantor/tests/SSLClientTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/SSLClientTest.cc rename to modules/trantor/trantor/tests/SSLClientTest.cc diff --git a/modules/http_trantor/trantor/tests/SSLServerTest.cc b/modules/trantor/trantor/tests/SSLServerTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/SSLServerTest.cc rename to modules/trantor/trantor/tests/SSLServerTest.cc diff --git a/modules/http_trantor/trantor/tests/SendfileTest.cc b/modules/trantor/trantor/tests/SendfileTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/SendfileTest.cc rename to modules/trantor/trantor/tests/SendfileTest.cc diff --git a/modules/http_trantor/trantor/tests/SerialTaskQueueTest1.cc b/modules/trantor/trantor/tests/SerialTaskQueueTest1.cc similarity index 100% rename from modules/http_trantor/trantor/tests/SerialTaskQueueTest1.cc rename to modules/trantor/trantor/tests/SerialTaskQueueTest1.cc diff --git a/modules/http_trantor/trantor/tests/SerialTaskQueueTest2.cc b/modules/trantor/trantor/tests/SerialTaskQueueTest2.cc similarity index 100% rename from modules/http_trantor/trantor/tests/SerialTaskQueueTest2.cc rename to modules/trantor/trantor/tests/SerialTaskQueueTest2.cc diff --git a/modules/http_trantor/trantor/tests/TcpClientTest.cc b/modules/trantor/trantor/tests/TcpClientTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/TcpClientTest.cc rename to modules/trantor/trantor/tests/TcpClientTest.cc diff --git a/modules/http_trantor/trantor/tests/TcpServerTest.cc b/modules/trantor/trantor/tests/TcpServerTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/TcpServerTest.cc rename to modules/trantor/trantor/tests/TcpServerTest.cc diff --git a/modules/http_trantor/trantor/tests/TimerTest.cc b/modules/trantor/trantor/tests/TimerTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/TimerTest.cc rename to modules/trantor/trantor/tests/TimerTest.cc diff --git a/modules/http_trantor/trantor/tests/TimerTest1.cc b/modules/trantor/trantor/tests/TimerTest1.cc similarity index 100% rename from modules/http_trantor/trantor/tests/TimerTest1.cc rename to modules/trantor/trantor/tests/TimerTest1.cc diff --git a/modules/http_trantor/trantor/tests/TimingWheelTest.cc b/modules/trantor/trantor/tests/TimingWheelTest.cc similarity index 100% rename from modules/http_trantor/trantor/tests/TimingWheelTest.cc rename to modules/trantor/trantor/tests/TimingWheelTest.cc diff --git a/modules/http_trantor/trantor/tests/server.pem b/modules/trantor/trantor/tests/server.pem similarity index 100% rename from modules/http_trantor/trantor/tests/server.pem rename to modules/trantor/trantor/tests/server.pem diff --git a/modules/http_trantor/trantor/third_party/wepoll/LICENSE b/modules/trantor/trantor/third_party/wepoll/LICENSE similarity index 100% rename from modules/http_trantor/trantor/third_party/wepoll/LICENSE rename to modules/trantor/trantor/third_party/wepoll/LICENSE diff --git a/modules/http_trantor/trantor/third_party/wepoll/README.md b/modules/trantor/trantor/third_party/wepoll/README.md similarity index 100% rename from modules/http_trantor/trantor/third_party/wepoll/README.md rename to modules/trantor/trantor/third_party/wepoll/README.md diff --git a/modules/http_trantor/trantor/third_party/wepoll/Wepoll.c b/modules/trantor/trantor/third_party/wepoll/Wepoll.c similarity index 100% rename from modules/http_trantor/trantor/third_party/wepoll/Wepoll.c rename to modules/trantor/trantor/third_party/wepoll/Wepoll.c diff --git a/modules/http_trantor/trantor/third_party/wepoll/Wepoll.h b/modules/trantor/trantor/third_party/wepoll/Wepoll.h similarity index 100% rename from modules/http_trantor/trantor/third_party/wepoll/Wepoll.h rename to modules/trantor/trantor/third_party/wepoll/Wepoll.h diff --git a/modules/http_trantor/trantor/unittests/CMakeLists.txt b/modules/trantor/trantor/unittests/CMakeLists.txt similarity index 100% rename from modules/http_trantor/trantor/unittests/CMakeLists.txt rename to modules/trantor/trantor/unittests/CMakeLists.txt diff --git a/modules/http_trantor/trantor/unittests/DateUnittest.cc b/modules/trantor/trantor/unittests/DateUnittest.cc similarity index 100% rename from modules/http_trantor/trantor/unittests/DateUnittest.cc rename to modules/trantor/trantor/unittests/DateUnittest.cc diff --git a/modules/http_trantor/trantor/unittests/InetAddressUnittest.cc b/modules/trantor/trantor/unittests/InetAddressUnittest.cc similarity index 100% rename from modules/http_trantor/trantor/unittests/InetAddressUnittest.cc rename to modules/trantor/trantor/unittests/InetAddressUnittest.cc diff --git a/modules/http_trantor/trantor/unittests/MsgBufferUnittest.cc b/modules/trantor/trantor/unittests/MsgBufferUnittest.cc similarity index 100% rename from modules/http_trantor/trantor/unittests/MsgBufferUnittest.cc rename to modules/trantor/trantor/unittests/MsgBufferUnittest.cc diff --git a/modules/http_trantor/trantor/unittests/splitStringUnittest.cc b/modules/trantor/trantor/unittests/splitStringUnittest.cc similarity index 100% rename from modules/http_trantor/trantor/unittests/splitStringUnittest.cc rename to modules/trantor/trantor/unittests/splitStringUnittest.cc diff --git a/modules/http_trantor/trantor/utils/AsyncFileLogger.cc b/modules/trantor/trantor/utils/AsyncFileLogger.cc similarity index 100% rename from modules/http_trantor/trantor/utils/AsyncFileLogger.cc rename to modules/trantor/trantor/utils/AsyncFileLogger.cc diff --git a/modules/http_trantor/trantor/utils/AsyncFileLogger.h b/modules/trantor/trantor/utils/AsyncFileLogger.h similarity index 100% rename from modules/http_trantor/trantor/utils/AsyncFileLogger.h rename to modules/trantor/trantor/utils/AsyncFileLogger.h diff --git a/modules/http_trantor/trantor/utils/ConcurrentTaskQueue.cc b/modules/trantor/trantor/utils/ConcurrentTaskQueue.cc similarity index 100% rename from modules/http_trantor/trantor/utils/ConcurrentTaskQueue.cc rename to modules/trantor/trantor/utils/ConcurrentTaskQueue.cc diff --git a/modules/http_trantor/trantor/utils/ConcurrentTaskQueue.h b/modules/trantor/trantor/utils/ConcurrentTaskQueue.h similarity index 100% rename from modules/http_trantor/trantor/utils/ConcurrentTaskQueue.h rename to modules/trantor/trantor/utils/ConcurrentTaskQueue.h diff --git a/modules/http_trantor/trantor/utils/Date.cc b/modules/trantor/trantor/utils/Date.cc similarity index 100% rename from modules/http_trantor/trantor/utils/Date.cc rename to modules/trantor/trantor/utils/Date.cc diff --git a/modules/http_trantor/trantor/utils/Date.h b/modules/trantor/trantor/utils/Date.h similarity index 100% rename from modules/http_trantor/trantor/utils/Date.h rename to modules/trantor/trantor/utils/Date.h diff --git a/modules/http_trantor/trantor/utils/Funcs.h b/modules/trantor/trantor/utils/Funcs.h similarity index 100% rename from modules/http_trantor/trantor/utils/Funcs.h rename to modules/trantor/trantor/utils/Funcs.h diff --git a/modules/http_trantor/trantor/utils/LockFreeQueue.h b/modules/trantor/trantor/utils/LockFreeQueue.h similarity index 100% rename from modules/http_trantor/trantor/utils/LockFreeQueue.h rename to modules/trantor/trantor/utils/LockFreeQueue.h diff --git a/modules/http_trantor/trantor/utils/LogStream.cc b/modules/trantor/trantor/utils/LogStream.cc similarity index 100% rename from modules/http_trantor/trantor/utils/LogStream.cc rename to modules/trantor/trantor/utils/LogStream.cc diff --git a/modules/http_trantor/trantor/utils/LogStream.h b/modules/trantor/trantor/utils/LogStream.h similarity index 100% rename from modules/http_trantor/trantor/utils/LogStream.h rename to modules/trantor/trantor/utils/LogStream.h diff --git a/modules/http_trantor/trantor/utils/Logger.cc b/modules/trantor/trantor/utils/Logger.cc similarity index 100% rename from modules/http_trantor/trantor/utils/Logger.cc rename to modules/trantor/trantor/utils/Logger.cc diff --git a/modules/http_trantor/trantor/utils/Logger.h b/modules/trantor/trantor/utils/Logger.h similarity index 100% rename from modules/http_trantor/trantor/utils/Logger.h rename to modules/trantor/trantor/utils/Logger.h diff --git a/modules/http_trantor/trantor/utils/MsgBuffer.cc b/modules/trantor/trantor/utils/MsgBuffer.cc similarity index 100% rename from modules/http_trantor/trantor/utils/MsgBuffer.cc rename to modules/trantor/trantor/utils/MsgBuffer.cc diff --git a/modules/http_trantor/trantor/utils/MsgBuffer.h b/modules/trantor/trantor/utils/MsgBuffer.h similarity index 100% rename from modules/http_trantor/trantor/utils/MsgBuffer.h rename to modules/trantor/trantor/utils/MsgBuffer.h diff --git a/modules/http_trantor/trantor/utils/NonCopyable.h b/modules/trantor/trantor/utils/NonCopyable.h similarity index 100% rename from modules/http_trantor/trantor/utils/NonCopyable.h rename to modules/trantor/trantor/utils/NonCopyable.h diff --git a/modules/http_trantor/trantor/utils/ObjectPool.h b/modules/trantor/trantor/utils/ObjectPool.h similarity index 100% rename from modules/http_trantor/trantor/utils/ObjectPool.h rename to modules/trantor/trantor/utils/ObjectPool.h diff --git a/modules/http_trantor/trantor/utils/SerialTaskQueue.cc b/modules/trantor/trantor/utils/SerialTaskQueue.cc similarity index 100% rename from modules/http_trantor/trantor/utils/SerialTaskQueue.cc rename to modules/trantor/trantor/utils/SerialTaskQueue.cc diff --git a/modules/http_trantor/trantor/utils/SerialTaskQueue.h b/modules/trantor/trantor/utils/SerialTaskQueue.h similarity index 100% rename from modules/http_trantor/trantor/utils/SerialTaskQueue.h rename to modules/trantor/trantor/utils/SerialTaskQueue.h diff --git a/modules/http_trantor/trantor/utils/TaskQueue.h b/modules/trantor/trantor/utils/TaskQueue.h similarity index 100% rename from modules/http_trantor/trantor/utils/TaskQueue.h rename to modules/trantor/trantor/utils/TaskQueue.h diff --git a/modules/http_trantor/trantor/utils/TimingWheel.cc b/modules/trantor/trantor/utils/TimingWheel.cc similarity index 100% rename from modules/http_trantor/trantor/utils/TimingWheel.cc rename to modules/trantor/trantor/utils/TimingWheel.cc diff --git a/modules/http_trantor/trantor/utils/TimingWheel.h b/modules/trantor/trantor/utils/TimingWheel.h similarity index 100% rename from modules/http_trantor/trantor/utils/TimingWheel.h rename to modules/trantor/trantor/utils/TimingWheel.h diff --git a/modules/http_trantor/trantor/utils/WindowsSupport.cc b/modules/trantor/trantor/utils/WindowsSupport.cc similarity index 100% rename from modules/http_trantor/trantor/utils/WindowsSupport.cc rename to modules/trantor/trantor/utils/WindowsSupport.cc diff --git a/modules/http_trantor/trantor/utils/WindowsSupport.h b/modules/trantor/trantor/utils/WindowsSupport.h similarity index 100% rename from modules/http_trantor/trantor/utils/WindowsSupport.h rename to modules/trantor/trantor/utils/WindowsSupport.h