4 Star 13 Fork 6

cpp-master/cpp-socks5

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
app_main.cpp 453 Bytes
Copy Edit Raw Blame History
海卫哥 authored 2025-06-27 07:28 +08:00 . feat:1.3.11, 添加toJson()
#include <tbox/main/main.h>
#include "socks5/create.h"
namespace tbox {
namespace main {
void RegisterApps(Module &app, Context &ctx) {
app.add(hevake::socks5::Create(ctx));
}
std::string GetAppDescribe() {
return "socks5 server base on cpp-tbox.";
}
std::string GetAppBuildTime() {
return __DATE__ " " __TIME__;
}
void GetAppVersion(int &major, int &minor, int &rev, int &build) {
major = 0;
minor = 1;
rev = 3;
build = 11;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/cpp-master/cpp-socks5.git
git@gitee.com:cpp-master/cpp-socks5.git
cpp-master
cpp-socks5
cpp-socks5
master

Search