├── AutoUpdateServer.pro ├── Common.h ├── README.md ├── TcpServer ├── RequestExecutable.cpp ├── RequestExecutable.h ├── RequestUpdateData.cpp ├── RequestUpdateData.h ├── RequestUpdateInfor.cpp ├── RequestUpdateInfor.h ├── RunnableBase.cpp ├── RunnableBase.h ├── TcpServer.cpp └── TcpServer.h ├── Thread ├── ThreadObjectBase.cpp ├── ThreadObjectBase.h ├── ThreadObjectUpdateData.cpp ├── ThreadObjectUpdateData.h ├── ThreadObjectUpdateInfor.cpp └── ThreadObjectUpdateInfor.h ├── WidgetMain.cpp ├── WidgetMain.h ├── WidgetMain.ui ├── dptr.h └── main.cpp /AutoUpdateServer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/AutoUpdateServer.pro -------------------------------------------------------------------------------- /Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/Common.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/README.md -------------------------------------------------------------------------------- /TcpServer/RequestExecutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/RequestExecutable.cpp -------------------------------------------------------------------------------- /TcpServer/RequestExecutable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/RequestExecutable.h -------------------------------------------------------------------------------- /TcpServer/RequestUpdateData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/RequestUpdateData.cpp -------------------------------------------------------------------------------- /TcpServer/RequestUpdateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/RequestUpdateData.h -------------------------------------------------------------------------------- /TcpServer/RequestUpdateInfor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/RequestUpdateInfor.cpp -------------------------------------------------------------------------------- /TcpServer/RequestUpdateInfor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/RequestUpdateInfor.h -------------------------------------------------------------------------------- /TcpServer/RunnableBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/RunnableBase.cpp -------------------------------------------------------------------------------- /TcpServer/RunnableBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/RunnableBase.h -------------------------------------------------------------------------------- /TcpServer/TcpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/TcpServer.cpp -------------------------------------------------------------------------------- /TcpServer/TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/TcpServer/TcpServer.h -------------------------------------------------------------------------------- /Thread/ThreadObjectBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/Thread/ThreadObjectBase.cpp -------------------------------------------------------------------------------- /Thread/ThreadObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/Thread/ThreadObjectBase.h -------------------------------------------------------------------------------- /Thread/ThreadObjectUpdateData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/Thread/ThreadObjectUpdateData.cpp -------------------------------------------------------------------------------- /Thread/ThreadObjectUpdateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/Thread/ThreadObjectUpdateData.h -------------------------------------------------------------------------------- /Thread/ThreadObjectUpdateInfor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/Thread/ThreadObjectUpdateInfor.cpp -------------------------------------------------------------------------------- /Thread/ThreadObjectUpdateInfor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/Thread/ThreadObjectUpdateInfor.h -------------------------------------------------------------------------------- /WidgetMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/WidgetMain.cpp -------------------------------------------------------------------------------- /WidgetMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/WidgetMain.h -------------------------------------------------------------------------------- /WidgetMain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/WidgetMain.ui -------------------------------------------------------------------------------- /dptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/dptr.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slug404/AutoUpdateServer/HEAD/main.cpp --------------------------------------------------------------------------------