This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/ext/picotcp/test/python/http_server_linux.py

14 lines
157 B
Python
Executable File

#!/usr/bin/python
from topology import *
T = Topology()
net1 = Network(T, "pyt0")
h2 = Host(T, net1, args="httpd")
sleep(1)
start(T)
wait(h2)
cleanup()