mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-29 22:24:32 +02:00
7 lines
187 B
Python
Executable File
7 lines
187 B
Python
Executable File
#!/usr/bin/env python
|
|
import socket
|
|
import struct
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
confirm = struct.pack("!BBB", 3, 1, 1)
|
|
sock.sendto(confirm, ("127.0.0.1", 5501))
|