Browse Source

server

master
Mai Gillmann 4 years ago
parent
commit
41711e47fc
2 changed files with 31 additions and 14 deletions
  1. 16
    8
      demo_client.py
  2. 15
    6
      demo_server.py

+ 16
- 8
demo_client.py View File

@@ -1,16 +1,24 @@
import socket

eingabe = input("Bitte etwas eingeben:")
#eingabe = input("Bitte etwas eingeben:")

s = socket.socket()
host = socket.gethostname()
port = 12346

s.connect((host, port))
s.send(eingabe.encode('utf-8'))
#bytes = s.recv(1024)
#print(bytes.decode('utf-8'))
print('Gesendet')
msg3 = s.recv(1024)

s.close()


#s.connect((host, port))
#s.send(eingabe.encode('utf-8'))
##bytes = s.recv(1024)
##print(bytes.decode('utf-8'))
#print('Gesendet')
#msg3 = s.recv(1024)
#print(msg3.decode('utf-8'))
#s.close()

while True:
eingabe = input("Bitte etwas eingeben:")
(connection, addr) = s.accept()
connection.send(eingabe.encode('utf-8'))

+ 15
- 6
demo_server.py View File

@@ -10,9 +10,18 @@ s.listen()
while True:
(connection, addr) = s.accept()
print("Verbindung von ", addr)
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()
#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()

msg = connection.recv(1024)
new_msg = msg2.decode('utf-8').upper()

if new_msg == "STOP":
break




Loading…
Cancel
Save