python -m SimpleHTTPServer 80 &
is used to run HTTP server in Mininet
. I want to find the file that contains the implementation of SimpleHTTPServer
so I can modify the code to run HTTP server based on my requirement. Where do I find it? I searched in Mininet directory but I did not find it.
SimpleHTTPServer is a part of the standard python library.
Docs can be found here