You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
# -*- coding: utf-8 -*- #***************************************************************************** # Copyright (C) 2006 Jorgen Stenarson. <jorgen.stenarson@bostream.nu> # # Distributed under the terms of the BSD License. The full license is in # the file COPYING, distributed as part of this software. #***************************************************************************** from __future__ import print_function, unicode_literals, absolute_import
import logging import logging.handlers import struct, socket from pyreadline.unicode_helper import ensure_unicode try: import msvcrt except ImportError: msvcrt = None print("problem")
port = logging.handlers.DEFAULT_TCP_LOGGING_PORT host = 'localhost'
def check_key(): if msvcrt is None: return False else: if msvcrt.kbhit(): q = ensure_unicode(msvcrt.getch()) return q return ""
singleline=False
def main(): print("Starting TCP logserver on port:", port) print("Press q to quit logserver", port) print("Press c to clear screen", port) s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.bind(("", port)) s.settimeout(1) while 1: try: data, addr = s.recvfrom(100000) print(data, end="") except socket.timeout: key = check_key().lower() if "q" == key: print("Quitting logserver") break elif "c" == key: print("\n" * 100)
if __name__ == "__main__": main()
|