YunQiang Su
YunQiang Su
`t.cpp` ```cpp #include #include "t.h" TT::TT(const int a) : n(a) { printf("{%s}[%s](%d) : %d\n", __FILE__, __func__, __LINE__, n); } ``` `m.cpp` ```cpp #include #include "t.h" int main() { int c...
If we tried 3 times, and our yubikey has no response, let's fallback to password input. If yubikey repsoned, while we cannot decrypt our disk with this response, let's ask...
版本45. 配置里有 ``` dns64 64:ff9b::/96 ``` 重启后,dig只有 IPv4 地址的网站,无法获取AAAA记录。 ``` $ dig @192.168.2.1 AAAA passport.jd.com ~ ; DiG 9.10.6 @192.168.2.1 AAAA passport.jd.com ; (1 server found) ;; global options: +cmd...
背景: 1. 路由器有双栈,并且提供NAT64服务,不提供DHCPv4; 局域网内其他机器只有V6地址。 3. 从路由器上,某些域名需要强制V4访问,例如google。 所以会有类似规则 ``` domain-rules/dmain-set:xxxxxxx/ -nameserver DDDDDDD -address #6 ``` 4. 希望smartdns可以提供DNS64 ``` dns64 64:ff9b::/96 ``` 问题: 解析域名集中的域名的AAAA记录,只能获取到SOA。 希望能支持如下语法: ``` domain-rules/dmain-set:xxxxxxx/ -nameserver DDDDDDD -address #6r ```...
When building with gcc-14, we will meet the problems like: error: implicit declaration of function ‘SctDevicePathStrFromProtocol’ [-Wimplicit-function-declaration]
I noticed that `gettimeofday` is used for MIPS, and `clock_gettime` is used for other architectures in `libretro-common/rthreads/rthreads.c`. Any consideration?