This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import socket | |
import sys | |
import _thread as thread | |
HOST = '' # Symbolic name meaning all available interfaces | |
PORT = 8888 # Arbitrary non-privileged port | |
missionSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
print ("MissionFX Socket created") |