We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5af0cd3 commit d7ec0a1Copy full SHA for d7ec0a1
README.md
@@ -7,7 +7,7 @@ Implement a Multithreaded File Server Using Tcp Sockets.
7
8
## File Server (Upload/Download) Using TCP Sockets using python language
9
- **SOCK_STREAM** keyword in socket definition implies that the sockets are ***TCP***, in case of **SOCK_DGRAM** it would ***UDP*** sockets.
10
- - self.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+ - `self.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)`
11
- Multiple Clients Can Connect to the Server.
12
- There are 3 files named temp.py, temp2.py and temp3.py
13
- First run the multiserver.py(in server folder), then run all the above(files in client folder)
0 commit comments