when set c->is_closing = 1 in HTTP server, why WEB page is not crash #1910
-
I was trying to update mongoose from V6.17 to V7.8 in our HTTPs server. Looking forward for your answer, Thank you very much. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
What web page ? What crash ? What does it do ? What does it expect ? Did you sniff your network ? Did you see HTTP/TCP traffic ? |
Beta Was this translation helpful? Give feedback.
What web page ? What crash ? What does it do ? What does it expect ? Did you sniff your network ? Did you see HTTP/TCP traffic ?
If Mongoose is your server and you set the
is_closing
flag, the connection will be closed https://mongoose.ws/documentation/#connection-flags . If you need to send remaining data, setis_draining
instead.Check our tutorials here: https://mongoose.ws/tutorials/