Lice Pan
Lice Pan
https://github.com/liseen/lua-resty-http/blob/master/lib/resty/http.lua#L193 here, is that missing the handle of error being other than nil or false(i.e. connection was closed remotely by accident)?
P44页讲到了Remove Duplicates from Sorted List的迭代解法,其中的一段代码片段: ``` c for (ListNode *prev = head, *cur = head->next; cur; cur = cur->next) { if (prev->val == cur->val) { prev->next = cur->next; delete cur;...
currently, i wanna add the `use` cmd to the module as it is not supported yet, and i have noticed that this module uses Ragel to generate response parsers (in...
the `ngx_http_discard_request_body()` function now is called right after we have checked the only permitted method(i.e. `GET` or `HEAD`), [related code](https://github.com/calio/beanstalkd-nginx-module/blob/master/src/ngx_http_beanstalkd_handler.c#L43) two possibilities may happen here 1. we haven't received the...