Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-os by
tools/host_tests/tcpecho_server_loop.py@0:f269e3021894, 2016-10-23 (annotated)
- Committer:
- elessair
- Date:
- Sun Oct 23 15:10:02 2016 +0000
- Revision:
- 0:f269e3021894
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
elessair | 0:f269e3021894 | 1 | """ |
elessair | 0:f269e3021894 | 2 | mbed SDK |
elessair | 0:f269e3021894 | 3 | Copyright (c) 2011-2013 ARM Limited |
elessair | 0:f269e3021894 | 4 | |
elessair | 0:f269e3021894 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
elessair | 0:f269e3021894 | 6 | you may not use this file except in compliance with the License. |
elessair | 0:f269e3021894 | 7 | You may obtain a copy of the License at |
elessair | 0:f269e3021894 | 8 | |
elessair | 0:f269e3021894 | 9 | http://www.apache.org/licenses/LICENSE-2.0 |
elessair | 0:f269e3021894 | 10 | |
elessair | 0:f269e3021894 | 11 | Unless required by applicable law or agreed to in writing, software |
elessair | 0:f269e3021894 | 12 | distributed under the License is distributed on an "AS IS" BASIS, |
elessair | 0:f269e3021894 | 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
elessair | 0:f269e3021894 | 14 | See the License for the specific language governing permissions and |
elessair | 0:f269e3021894 | 15 | limitations under the License. |
elessair | 0:f269e3021894 | 16 | """ |
elessair | 0:f269e3021894 | 17 | # Be sure that the tools directory is in the search path |
elessair | 0:f269e3021894 | 18 | import sys |
elessair | 0:f269e3021894 | 19 | from os.path import join, abspath, dirname |
elessair | 0:f269e3021894 | 20 | ROOT = abspath(join(dirname(__file__), "..", "..")) |
elessair | 0:f269e3021894 | 21 | sys.path.insert(0, ROOT) |
elessair | 0:f269e3021894 | 22 | |
elessair | 0:f269e3021894 | 23 | from mbed_settings import LOCALHOST |
elessair | 0:f269e3021894 | 24 | from SocketServer import BaseRequestHandler, TCPServer |
elessair | 0:f269e3021894 | 25 | |
elessair | 0:f269e3021894 | 26 | |
elessair | 0:f269e3021894 | 27 | class TCP_EchoHandler(BaseRequestHandler): |
elessair | 0:f269e3021894 | 28 | def handle(self): |
elessair | 0:f269e3021894 | 29 | print "\nHandle connection from:", self.client_address |
elessair | 0:f269e3021894 | 30 | while True: |
elessair | 0:f269e3021894 | 31 | data = self.request.recv(1024) |
elessair | 0:f269e3021894 | 32 | if not data: break |
elessair | 0:f269e3021894 | 33 | self.request.sendall(data) |
elessair | 0:f269e3021894 | 34 | self.request.close() |
elessair | 0:f269e3021894 | 35 | print "socket closed" |
elessair | 0:f269e3021894 | 36 | |
elessair | 0:f269e3021894 | 37 | if __name__ == '__main__': |
elessair | 0:f269e3021894 | 38 | server = TCPServer((LOCALHOST, 7), TCP_EchoHandler) |
elessair | 0:f269e3021894 | 39 | print "listening for connections on:", (LOCALHOST, 7) |
elessair | 0:f269e3021894 | 40 | server.serve_forever() |