Instructions:
Imagine you are sending the following message "HELLO, WORLD!" over the internet. You need to split this message into packets and complete the headers and footers for each packet based on the principles of TCP/IP packetization.
Message to Send: "HELLO, WORLD!"
Packetisation Details:
- Maximum Packet Size: 10 characters (excluding headers and footers).
- Sequence Number starts at 1 and increments by 1 for each packet.
- You can assume that the source address is "YourDevice" and the destination address is "DestinationDevice."
Task:
- Split the message "HELLO, WORLD!" into packets based on the maximum packet size.
- Create a header and footer for each packet.
- Fill in the header and footer information for each packet based on the principles discussed earlier.