This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
esp-firewall/ESPFirewall/app.py
2022-05-02 21:02:01 +02:00

11 lines
157 B
Python

import socket
sock = socket.socket()
host = "10.93.0.246"
port = 80
sock.connect((host, port))
sock.send("test".encode())
sock.close()