Support Board
Date/Time: Fri, 24 Jan 2025 00:41:52 +0000
Post From: UDP Text RELEASE_ALL_DLLS and ALLOW_LOAD_ALL_DLLS not works for me
[2018-12-16 23:58:45] |
Kiwi - Posts: 375 |
Just confirming that the Python version works (I added a 1 millisecond delay after loading socket and instantiating the object sock before issuing commands). import socket
from time import sleep #UDP to socket sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sleep(0.0001) sock.sendto(b"RELEASE_ALL_DLLS", ("127.0.0.1", 22903)) sock.sendto(b"ALLOW_LOAD_ALL_DLLS", ("127.0.0.1", 22903)) |