mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 22:18:13 +00:00
14 lines
309 B
Python
Executable File
14 lines
309 B
Python
Executable File
#!/usr/bin/python
|
|
import socket
|
|
import os
|
|
|
|
UDP_IP = os.getenv('TREZOR_UDP_IP', '127.0.0.1')
|
|
UDP_PORT = int(os.getenv('TREZOR_UDP_PORT', '21324'))
|
|
MESSAGE = b'Hello, World!'
|
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
sock.sendto(MESSAGE, (UDP_IP, UDP_PORT))
|
|
|
|
while True:
|
|
print(sock.recv(64))
|