TLS : Changement hôte par défaut

This commit is contained in:
Maximilien LEDOUX 2022-03-10 14:22:34 +01:00
parent 9e2e2d7aa4
commit d687732fad
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -11,14 +11,14 @@ class MainWindow:
self.root.title("SecCon - © Louis SWINNEN 2022")
self.root.config(bd=5)
self.host = tk.StringVar()
self.host.set("127.0.0.1")
self.host.set("ffe.labo.swilabus.com")
self.passw = tk.StringVar()
self.passw.set("aaaaa")
self.login = tk.StringVar()
self.login.set("aa")
self.tls = tk.BooleanVar()
self.port = tk.IntVar()
self.port.set(8500)
self.port.set(8000)
self.draw_window()
def start_main_loop(self):