BasicAlgorithm / Protocol-HSM

0 stars 2 forks source link

Use recv & send instead of read & write #21

Closed mgonnav closed 3 years ago

mgonnav commented 3 years ago

recv & send are more specific to socket file descriptors, therefore are better suited for this project. All read & write uses shall be changed for recv & send respectivelly. The functionality should remain unaffected.

BasicAlgorithm commented 3 years ago

ok. by the way, I can't find read & write... recvfrom and sendto, yes.

BasicAlgorithm commented 3 years ago

Solved