f-stack/app
logwang e340d433ea Nginx: fix crash when server configuration item [`kernel_network_stack`] is on and uses `proxy_pass`.
When nginx is configured like this:
```
server {
    listen       8000;
    kernel_network_stack on;
    location / {
        proxy_pass http://127.0.0.1:8080/;
    }
}
```
nginx will crash, becasue kernel network stack is handled in a single thread, but we have hijacked all the socket apis, it causes that all apis enter to f-stack's path which is in main thread.
2018-01-11 18:20:41 +08:00
..
micro_thread Micro_thread: convert encoding of source files and remove chinese comments. 2017-11-20 22:39:00 +08:00
nginx-1.11.10 Nginx: fix crash when server configuration item [`kernel_network_stack`] is on and uses `proxy_pass`. 2018-01-11 18:20:41 +08:00
redis-3.2.8 redis: Use the ff_gettimeofday instead of gettimeofday. 2017-08-30 19:48:48 -07:00