Skip to content

Commit 409f2f4

Browse files
authored
Update README.md
1 parent 49d1c9c commit 409f2f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Implement a Multithreaded File Server Using Tcp Sockets.
66
</p>
77

88
## 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)`
119
- Multiple Clients Can Connect to the Server.
1210
- There are 3 files named *temp.py*, *temp2.py* and *temp3.py*
1311
- First run the *multiserver.py*(in server folder), then run all the above(files in client folder)
@@ -17,3 +15,5 @@ Implement a Multithreaded File Server Using Tcp Sockets.
1715
- `threading.Thread(target = self.listenToClient,args = (c,addr)).start()`
1816
- File is divided into 1KB blocks and File is transferred block by block.
1917
- code ensures that file is recieved at the other end in 1024bytes only at a time, but you can make changes as you want.
18+
- **SOCK_STREAM** keyword in socket definition implies that the sockets are ***TCP***, in case of **SOCK_DGRAM** it would ***UDP*** sockets.
19+
- `self.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)`

0 commit comments

Comments
 (0)