Updated udp.py with the new default port

This commit is contained in:
Jordan Sherer 2019-11-22 15:18:37 -05:00
parent 2159ea0cfb
commit b961d03045

2
udp.py
View File

@ -5,7 +5,7 @@ from socket import socket, AF_INET, SOCK_DGRAM
import json import json
import time import time
listen = ('127.0.0.1', 2237) listen = ('127.0.0.1', 2242)
def from_message(content): def from_message(content):