Python: Echo Server: Revision history

From OnnoCenterWiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

4 December 2015

3 December 2015

27 July 2015

4 May 2014

  • curprev 05:1805:18, 4 May 2014 Onnowpurbo talk contribs 877 bytes +877 New page: Here is a simple echo server (echoserver-simple.py): #!/usr/bin/env python """ A simple echo server """ import socket host = '' port = 50000 backlog = 5 size = 1024 s = s...