Skip to content

Commit 90a4e42

Browse files
committed
other
1 parent 9526c9d commit 90a4e42

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

socket/basic/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,12 @@ See: [Simple Protocol](../simple-protocol)
2929
It first sends message's length as `int` converted to `4-bytes`.
3030

3131
length_bytes = struct.pack('!i', length_int)
32+
33+
# Version #3
34+
35+
Using threads to handle many clients at the same time
36+
37+
Python: [threading](https://docs.python.org/3/library/threading.html)
38+
39+
Other examples: [Thread][../thread]
40+

thread/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Documentation
2+
3+
Python: [threading](https://docs.python.org/3/library/threading.html)

0 commit comments

Comments
 (0)