mbed-os for GR-LYCHEE

Dependents:   mbed-os-example-blinky-gr-lychee GR-Boads_Camera_sample GR-Boards_Audio_Recoder GR-Boads_Camera_DisplayApp ... more

Committer:
dkato
Date:
Fri Feb 02 05:42:23 2018 +0000
Revision:
0:f782d9c66c49
mbed-os for GR-LYCHEE

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dkato 0:f782d9c66c49 1 """
dkato 0:f782d9c66c49 2 mbed SDK
dkato 0:f782d9c66c49 3 Copyright (c) 2011-2013 ARM Limited
dkato 0:f782d9c66c49 4
dkato 0:f782d9c66c49 5 Licensed under the Apache License, Version 2.0 (the "License");
dkato 0:f782d9c66c49 6 you may not use this file except in compliance with the License.
dkato 0:f782d9c66c49 7 You may obtain a copy of the License at
dkato 0:f782d9c66c49 8
dkato 0:f782d9c66c49 9 http://www.apache.org/licenses/LICENSE-2.0
dkato 0:f782d9c66c49 10
dkato 0:f782d9c66c49 11 Unless required by applicable law or agreed to in writing, software
dkato 0:f782d9c66c49 12 distributed under the License is distributed on an "AS IS" BASIS,
dkato 0:f782d9c66c49 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
dkato 0:f782d9c66c49 14 See the License for the specific language governing permissions and
dkato 0:f782d9c66c49 15 limitations under the License.
dkato 0:f782d9c66c49 16 """
dkato 0:f782d9c66c49 17 # Be sure that the tools directory is in the search path
dkato 0:f782d9c66c49 18 import sys
dkato 0:f782d9c66c49 19 from os.path import join, abspath, dirname
dkato 0:f782d9c66c49 20 ROOT = abspath(join(dirname(__file__), "..", ".."))
dkato 0:f782d9c66c49 21 sys.path.insert(0, ROOT)
dkato 0:f782d9c66c49 22
dkato 0:f782d9c66c49 23 from mbed_settings import LOCALHOST
dkato 0:f782d9c66c49 24 from SocketServer import BaseRequestHandler, TCPServer
dkato 0:f782d9c66c49 25
dkato 0:f782d9c66c49 26
dkato 0:f782d9c66c49 27 class TCP_EchoHandler(BaseRequestHandler):
dkato 0:f782d9c66c49 28 def handle(self):
dkato 0:f782d9c66c49 29 print "\nHandle connection from:", self.client_address
dkato 0:f782d9c66c49 30 while True:
dkato 0:f782d9c66c49 31 data = self.request.recv(1024)
dkato 0:f782d9c66c49 32 if not data: break
dkato 0:f782d9c66c49 33 self.request.sendall(data)
dkato 0:f782d9c66c49 34 self.request.close()
dkato 0:f782d9c66c49 35 print "socket closed"
dkato 0:f782d9c66c49 36
dkato 0:f782d9c66c49 37 if __name__ == '__main__':
dkato 0:f782d9c66c49 38 server = TCPServer((LOCALHOST, 7), TCP_EchoHandler)
dkato 0:f782d9c66c49 39 print "listening for connections on:", (LOCALHOST, 7)
dkato 0:f782d9c66c49 40 server.serve_forever()