桃子
桃子
我当时也是在 Windows 上用 Keil 写的,不过一直使用的是 Windows 默认的编码方式,不是 UTF-8。后面切换到其它平台才发现 UTF-8 的重要性,不过已经是很多年后了,没有及时为软件增加 UTF-8 处理的能力。 增加这个能力不算特别复杂,只需要处理一下接收到字节流时的编码即可。[cmheia](https://github.com/cmheia) 在他的 fork 中增加过 UTF-8 的处理,见[增加UTF-8字节流处理器](https://github.com/cmheia/common/commit/138b421e3165a3ef32ec7b41c36583af932d21ac),后面还有一些修补提交。 我目前没有时间维护这款软件,大家有空的话,可以发一些 merge requests / bugs 修复 给我合并到主分支。 谢谢。
@jgm Thanks for replying. > that indicators of block structure always take precedence over indicators of inline structure. In the Spec, the `Link Reference Definition` is under the `Leaf blocks`...
@wooorm Oh, look forward to seeing that. A question: what conditions will make a content closed? A blank line? My state machine is only for definitions parsing. It reports a...
Hi, If I remember correctly, versions after 5.1 have many incompatibles with 5.1. For what reasons you want to support the latest version?
看起来是你的 nginx 的 location 配置有误。 你可以尝试直接用 curl 请求一下你的 会是什么效果。
我更新了一下代码,现在能打印更详细的错误信息(302 时的重定向 URL),你可以重新编译试试看看。
不是不可以加密,主要是考虑到一个场景是,我这边默认 nginx 是受信的。😅 为什么你那边不信任这个 nginx 呢? client 和 server 之间传输的流量也本身是不再单独加密的。
Hey, you should use `go build` instead of `go build main.go`.
想了解一下你的具体使用场景。比如 nginx 是谁的。因为光加密地址参数是不行的,数据也要加密。这样的话,性能影响就比较大了。