Browse Source

v2

master
Tu Quyen Tran Ngoc 4 years ago
parent
commit
dd72d45aef
3 changed files with 16 additions and 5 deletions
  1. 6
    0
      .idea/vcs.xml
  2. 3
    2
      clie_file.py
  3. 7
    3
      serv_file.py

+ 6
- 0
.idea/vcs.xml View File

<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

+ 3
- 2
clie_file.py View File

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

s.connect((host, port)) s.connect((host, port))

s.send(eingabe.encode('utf-8')) s.send(eingabe.encode('utf-8'))


msgRes = s.recv(1024)
print(msgRes.decode('utf-8'))

s.close() s.close()

+ 7
- 3
serv_file.py View File

while True: while True:
(connection, addr) = s.accept() (connection, addr) = s.accept()


bytes = s.recv(1024)
print(bytes.decode('utf-8'))
msg = connection.recv(1024)
msgReturn = msg.decode('utf-8').upper()
connection.send(msgReturn.encode('utf-8'))
connection.close()





connection.close()

Loading…
Cancel
Save