(host, port)
| 779 | |
| 780 | |
| 781 | def serve(host, port): |
| 782 | global listener |
| 783 | listener = sockets.serve("Client", Client, host, port) |
| 784 | sessions.report_sockets() |
| 785 | return sockets.get_address(listener) |
| 786 | |
| 787 | |
| 788 | def stop_serving(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…