Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
Version 1.4
Browse files Browse the repository at this point in the history
紧急封锁创建隧道模块
  • Loading branch information
Zhiyuan36 authored Jul 18, 2023
1 parent b08497a commit 3e6028a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions LoCyanFrpMSApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include <direct.h> // 文件夹创建模块
#include "requests.h" // 爬取网页模块
#include "utils.h" // requests.h 的前置
#define VERSION (string)"Version 1.3"
#define VERSION (string)"Version 1.4"
#pragma comment(lib, "Urlmon.lib")

using namespace std; // cin / cout 定义模块
Expand Down Expand Up @@ -447,7 +447,8 @@ inline void login() // 登录模块
_putch(' '); // 输出空格覆盖原字符
_putch('\b'); // 退格回到原位置
}
}else{
}
else {
password.push_back(ch); // 将输入字符保存到字符串中
_putch('*'); // 在终端上显示的字符用 "*" 填充
}
Expand Down Expand Up @@ -1412,6 +1413,12 @@ inline void Delete() // 删除隧道模块
}
inline void Create() // 创建隧道模块
{
system("cls");
print("紧急错误,正在修复", 49, 50);
Sleep(2000);
system("cls");
return;

string Tunnel_name, InlineIP, Protocol, InlinePort, OnlinePort, HTTPSdoname, token, Compress = "0", Encrypt = "0", TryGet, Return;
int ServerID;
system("cls");
Expand Down Expand Up @@ -2046,4 +2053,4 @@ inline LPCWSTR stringToLPCWSTR(string orig) // 将 LPCWSTR 形式的字符串转
* 2.freopen:别用
* 3.输出 / 输入文件:ANSI
* 4.更改输出颜色,输出后记得改回来
*/
*/

0 comments on commit 3e6028a

Please sign in to comment.