Lion Yang

Results 29 comments of Lion Yang

It's unusual for OpenSSL 1.1, which is quite a high version. Could the host or port be the wrong one? Could you please report the output of `openssl s_client -host...

Ack. I'll check it asap

会不会是新版的网关要求 host_id:str, host_name:str 两个参数填入? 另外建议留意一下这个断线指的是什么引发的,是 tun 被关闭了还是通信连接被 FIN/RST 了?

如果是这样的话,可能是网络连接设置了一个比较短的超时。 我大概知道问题在哪里了,可能是你的 SSL 端太久没有访问就 timeout 退出了。hilldust.py 的 ```python def inbound_handle(): while True: raw = c.recv() platform_linux.write(raw) def outbound_handle(): while True: raw = platform_linux.read() c.send(raw) ``` 这个地方是转发 tun 流量到 SSL 隧道,可能给...

如果你发现确实能解决问题,建议你开一个 PR 或者重新打开这个 issue,合入一下你的解决方案后再关闭。

好的,非常感谢✨

@songgao I think the answer is yes. Stability and even compatibility and every bug fix. It has been frozen since 1.4 that means no one line changes since that, but...

I am sorry for commenting on the legacy version repo. @Spasi @grum I am a user (and player of Minecraft which is using LWJGL 2.9.3) on both Linux and Windows....

合入上游之前,如果还可以调整,新的 ELF 可以通过定义新的 EI_ABIVERSION 来做出区分。 如果已经没有机会再改动 ABI 规范,可以试试通过 .note.ABI-tag 里面记载的内核最低版本要求来区分新老 ELF(可用 file 命令检查看看)。前提是商业系统不会再往上升级内核版本。

> glibc中`EI_ABIVERSION`有特殊含义(search `LIBC_ABI_MAX`)。arch不可随意变更。 https://maskray.me/blog/2021-10-31-relative-relocations-and-relr#ei_abiversion 好吧,那如果定义 EI_OSABI,明确区分两种 ABI 呢?