This commit is contained in:
Mai Gillmann 2019-10-15 15:16:20 +02:00
parent 97c7f944f5
commit 1f09919ed7
2 changed files with 10 additions and 6 deletions

View File

@ -7,9 +7,10 @@ host = socket.gethostname()
port = 12346
s.connect((host, port))
s.send(eingabe)
bytes = s.recv(1024)
print(bytes.decode('utf-8'))
print('Receipt')
s.send(eingabe.encode('utf-8'))
#bytes = s.recv(1024)
#print(bytes.decode('utf-8'))
print('Gesendet')
msg3 = s.recv(1024)
s.close()

View File

@ -10,6 +10,9 @@ s.listen()
while True:
(connection, addr) = s.accept()
print("Verbindung von ", addr)
msg = "Danke für das Vorbeischauen!"
connection.send(msg.encode('utf-8'))
msg2 = connection.recv(1024)
new_msg2 = msg2.decode('utf-8') .upper()
print(new_msg2)
connection.send(new_msg2.encode('utf-8'))
#connection.send(msg.encode('utf-8'))
connection.close()