Exercise
Enhance your understanding of distributed systems by getting hands-on practice with the exercise provided in this lesson!
We'll cover the following...
In this exercise, we’ll write some simple communication code to get you familiar with the task of doing so. Have fun!
Questions
-
Using the code provided in the chapter, build a simple UDP-based server and client. The server should receive messages from the client, and reply with an acknowledgment. In this first attempt, do not add any retransmission or robustness (assume that communication works perfectly). Run this on a single machine for testing; later, run it on two different machines.
-
Turn your code into a communication library. Specifically, make your own API, with send and receive calls, as well as other API ...