-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nmap scan stops MicroWebSrv #44
Comments
Hello, |
Yes, it doesn't crash anymore! |
Hello,
I released a fully new version (v2.0) of my web server here :
github.com/jczic/MicroWebSrv2.
Open source MIT, fully asynchronous, more robust, more fast and more
efficient!
It is delivered with a good documentation.
Thank you for your support and feedback.
… Closed #44 <#44>.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#44 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAegLITfxSGlIjtWifgs0DPeaPTN_2B1ks5uj59qgaJpZM4W6-K2>
.
--
*Sincèrement,*
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
thank you for this nice web server project!
I'm using nmap to discover devices in my network. However, as soon as I start the scan in the linux console, MicroWebSrv on my WiPy 3.0 stops working. After that, restarting the server with
srv.Start()
fails due to [Errno 12] ENOMEM. I found that I need to close the socket first.srv.Stop()
will not help, because it closes only, ifsrv._started
is true, which is not the case. Maybe this can be changed?srv._server.close()
helps. After that a restart of the server is possible without reseting the whole device.To trace the cause of the server stop error, I changed the try/except block in microWebSrv.py line 239 to
I get [Errno 128] ENOTCONN when nmap starts.
It seems some connection is being lost. Is there a way to prevent MicroWebSrv from stopping at this position?
nmap has version 7.60
wipy firmware is 1.19.0.b4
micropython has version 1.9.4
Server is started with:
The text was updated successfully, but these errors were encountered: