I am not super great at this

This commit is contained in:
2023-04-13 00:43:16 -07:00
parent 90c3391182
commit bc00b2707a
2 changed files with 3 additions and 4 deletions

View File

@@ -12,9 +12,9 @@ class MyFrame(wx.Frame):
my_btn.Bind(wx.EVT_BUTTON, self.on_press)
my_sizer.Add(my_btn, 0, wx.ALL | wx.CENTER, 5)
panel.SetSizer(my_sizer)
self.host = "127.0.1.1"
self.host = "lukesau.com"
self.port = 5000 # socket server port number
self.header_size = 64
self.header_size = 1024
self.format = "utf-8"
self.disconnect_message = "!DISCONNECT"
self.Show()