Files
fml13v01-buildroot/support/testing/tests/package/sample_python_twisted.py
T
2021-12-06 14:12:13 +08:00

10 lines
172 B
Python

from twisted.internet import protocol, reactor, endpoints
class F(protocol.Factory):
pass
endpoints.serverFromString(reactor, "tcp:1234").listen(F())
reactor.run()