Skip to content

Commit a382fda

Browse files
committed
fix: grammer
1 parent 5df5a38 commit a382fda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Dual-Path at here means the packet will be ensure by double transmit.
1010

1111
As the dp-tcp started, it will create a network interface for proxy real data packet. At the above image, packet from blue network interface to green network interface is doing packet duplication, and the packet from green network interface to blue network interface is doing packet elimination.
1212

13-
For duplication, it just duplicate the packet read from blue network interface and write to both TCP links.
13+
For duplication, it just duplicates the packet read from blue network interface and write to both TCP links.
1414

1515
For elimination, dp-tcp used a [hashmap](github.com/cornelk/hashmap) to store packet record. This map is efficient and safe for doing concurent map read/write. The record stored in the map is not the original raw packet since it may be very large. dp-tcp used [xxhash](github.com/cornelk/hashmap), a quick hash function, for hashing the packet into an `uint64` value, which makes it easy stored.
1616

0 commit comments

Comments
 (0)