Send a message to the child HTTP server process and wait for it to finish.
(self)
| 223 | return child_result |
| 224 | |
| 225 | def Shutdown(self): |
| 226 | """Send a message to the child HTTP server process and wait for it to |
| 227 | finish.""" |
| 228 | self.conn.send(False) |
| 229 | self.process.join() |
| 230 | |
| 231 | def GetURL(self, rel_url): |
| 232 | """Get the full url for a file on the local HTTP server. |
no test coverage detected